Skip to content

Commit

Permalink
WiP
Browse files Browse the repository at this point in the history
  • Loading branch information
narc-Ontakac2 committed Feb 19, 2023
1 parent 7f76b90 commit 7431fc5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/debuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ jobs:
- name: Set env
# Here we are setting a variable from an expression.
run: echo "TAG_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: set build tag
run: |
set -x
build_tag="$TAG_NAME-build$(date +'%F-%H-%m-%S-%N')"
git tag $build_tag
# https://support.github.com/ticket/personal/0/1996818
git push origin $build_tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: install devscripts
run: sudo apt-get install equivs devscripts
- name: install dependencies
Expand All @@ -45,15 +54,6 @@ jobs:
# This is not a secret, but we want to have all signing
# configuration in one place
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
- name: set build tag
run: |
set -x
build_tag="$TAG_NAME-build$(date +'%F-%H-%m-%S-%N')"
git tag $build_tag
# https://support.github.com/ticket/personal/0/1996818
git push origin $build_tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload
run: |
set -x
Expand All @@ -69,7 +69,7 @@ jobs:
needs: debuild
strategy:
matrix:
architecture: [armhf]
architecture: [armhf,arm64,amd64]
distribution: [unstable]
runs-on: ubuntu-latest
environment: main
Expand Down

0 comments on commit 7431fc5

Please sign in to comment.