File tree Expand file tree Collapse file tree 1 file changed +21
-4
lines changed
Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change 1414# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1515jobs :
1616 # This workflow contains a single job called "build"
17- build :
17+ build-chroot :
1818 # The type of runner that the job will run on
1919 runs-on : ubuntu-latest
2020 # runs-on: ubuntu-18.04
4242 sudo apt update
4343 sudo apt install qemu-user-static
4444
45- # - name: build arm64 chroot
46- # run: |
47- # ./buildchroot.sh arm64
45+ - name : build arm64 chroot
46+ run : |
47+ ./buildchroot.sh arm64
48+
49+ - name : Upload binaries to release
50+ # if: endsWith(github.ref,'-main')
51+ uses : softprops/action-gh-release@v1
52+ with :
53+ token : ${{ secrets.GITHUB_TOKEN }}
54+ # body: ${{ github.sha }}
55+ tag_name : " CHROOT-Bullseye"
56+ target_commitish : ${{ github.sha }}
57+ files : |
58+ debian_*.tar.gz
59+
60+ - uses : actions/upload-artifact@v2
61+ with :
62+ name : bullseye-chroot
63+ path : |
64+ debian_*.tar.gz
You can’t perform that action at this time.
0 commit comments