Skip to content

Commit 7431fc5

Browse files
committed
WiP
1 parent 7f76b90 commit 7431fc5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/debuild.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ jobs:
2020
- name: Set env
2121
# Here we are setting a variable from an expression.
2222
run: echo "TAG_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV
23+
- name: set build tag
24+
run: |
25+
set -x
26+
build_tag="$TAG_NAME-build$(date +'%F-%H-%m-%S-%N')"
27+
git tag $build_tag
28+
# https://support.github.com/ticket/personal/0/1996818
29+
git push origin $build_tag
30+
env:
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2332
- name: install devscripts
2433
run: sudo apt-get install equivs devscripts
2534
- name: install dependencies
@@ -45,15 +54,6 @@ jobs:
4554
# This is not a secret, but we want to have all signing
4655
# configuration in one place
4756
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
48-
- name: set build tag
49-
run: |
50-
set -x
51-
build_tag="$TAG_NAME-build$(date +'%F-%H-%m-%S-%N')"
52-
git tag $build_tag
53-
# https://support.github.com/ticket/personal/0/1996818
54-
git push origin $build_tag
55-
env:
56-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757
- name: upload
5858
run: |
5959
set -x
@@ -69,7 +69,7 @@ jobs:
6969
needs: debuild
7070
strategy:
7171
matrix:
72-
architecture: [armhf]
72+
architecture: [armhf,arm64,amd64]
7373
distribution: [unstable]
7474
runs-on: ubuntu-latest
7575
environment: main

0 commit comments

Comments
 (0)