Skip to content

Commit

Permalink
Fix permission denied
Browse files Browse the repository at this point in the history
  • Loading branch information
hack3ric committed Apr 20, 2024
1 parent d9c4a63 commit 449053f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ jobs:
docker-image: debian:bookworm-slim
- name: Rename
run: |
mkdir out
cd debian/artifacts
for _f in mimic*.deb; do mv "$_f" "Debian-12_$_f"; done
for _f in mimic*.deb; do cp "$_f" "../../out/Debian-12_$_f"; done
- name: Upload
uses: actions/upload-artifact@v4
with:
name: bookworm
path: debian/artifacts/*.deb
path: out/*.deb
build-noble:
runs-on: ubuntu-latest
steps:
Expand All @@ -40,10 +41,11 @@ jobs:
docker-image: ubuntu:noble
- name: Rename
run: |
mkdir out
cd debian/artifacts
for _f in mimic*.deb; do mv "$_f" "Ubuntu-24.04_$_f"; done
for _f in mimic*.deb; do cp "$_f" "../../out/Ubuntu-24.04_$_f"; done
- name: Upload
uses: actions/upload-artifact@v4
with:
name: mantic
path: debian/artifacts/*.deb
path: out/*.deb

0 comments on commit 449053f

Please sign in to comment.