Browse Source

Copy the deployment zip to the current working dir?

master
nolim1t 5 years ago
parent
commit
c81336fb4a
No known key found for this signature in database GPG Key ID: F6287B82CC84BCBD
  1. 6
      .github/workflows/release.yml

6
.github/workflows/release.yml

@ -13,8 +13,8 @@ jobs:
run: sudo apt-get -y install quilt qemu-user-static debootstrap bsdtar run: sudo apt-get -y install quilt qemu-user-static debootstrap bsdtar
- name: Run Build script - name: Run Build script
run: sudo ./build.sh run: sudo ./build.sh
- name: Debug deploy dir - name: Copy ZIP to current working dir
run: ls -la deploy/ run: cp deploy/*.zip ./
- name: Debug current working dir - name: Debug current working dir
run: ls -la run: ls -la
- name: Release Image - name: Release Image
@ -22,5 +22,5 @@ jobs:
uses: meeDamian/github-release@v1.0.0 uses: meeDamian/github-release@v1.0.0
with: with:
gzip: false gzip: false
files: deploy/*.zip files: *.zip
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}

Loading…
Cancel
Save