Skip to content

Commit

Permalink
fix: use next as default bundle on push
Browse files Browse the repository at this point in the history
  • Loading branch information
MelchiorKokernoot committed Dec 20, 2024
1 parent 2a808b2 commit e69bfca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
ref: ${{ inputs.branch || github.ref }}

- name: Set TAG and VERSION
id: vars
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
run: |
docker run --rm \
-e MIX_ENV=$MIX_ENV \
-e BUNDLE=${{ inputs.bundle }} \
-e BUNDLE=${{ inputs.bundle || 'next' }} \
-e VERSION=$VERSION \
-v ${{ github.workspace }}:/app \
next-platform:latest \
Expand Down

0 comments on commit e69bfca

Please sign in to comment.