File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 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
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
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
You can’t perform that action at this time.
0 commit comments