Skip to content

Commit

Permalink
fix adding deb to the release page
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelRonhaar committed Nov 20, 2023
1 parent f1dd175 commit 25e7727
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/create_deb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: actions/checkout@v3
- run: docker build --build-arg VERSION=${{ env.RELEASE_VERSION }} --build-arg ARCHITECTURE=arm64 . -t deb_creator:latest
- run: docker run -v $(pwd):/output deb_creator:latest
- run: docker run -v $(pwd)/build:/output deb_creator:latest
- name: Upload binary
uses: actions/upload-artifact@v3
with:
Expand All @@ -24,7 +24,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
infra/rooftop/*.deb
build/*.deb
amd64:
runs-on: ubuntu-22.04
timeout-minutes: 5
Expand All @@ -33,7 +33,7 @@ jobs:
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: actions/checkout@v3
- run: docker build --build-arg VERSION=${{ env.RELEASE_VERSION }} --build-arg ARCHITECTURE=amd64 . -t deb_creator:latest
- run: docker run -v $(pwd):/output deb_creator:latest
- run: docker run -v $(pwd)/build::/output deb_creator:latest
- name: Upload binary
uses: actions/upload-artifact@v3
with:
Expand All @@ -44,4 +44,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
infra/rooftop/*.deb
build/*.deb

0 comments on commit 25e7727

Please sign in to comment.