Skip to content

Commit

Permalink
feat: add bump input to release workflow for versioning control
Browse files Browse the repository at this point in the history
  • Loading branch information
nneewwoo committed Nov 28, 2024
1 parent 8f0b3f2 commit ca93630
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ jobs:
shell: bash
run: |
echo "channel=${{ github.event.inputs.channel || 'dev' }}" >> $GITHUB_ENV
echo "bump=${{ github.event.inputs.bump || 'patch' }}" >> $GITHUB_ENV
- name: calculate next version
shell: bash
Expand Down Expand Up @@ -185,7 +186,9 @@ jobs:
shell: bash
run: |
echo "channel=${{ github.event.inputs.channel || 'dev' }}" >> $GITHUB_ENV
- name: Download artifacts
echo "bump=${{ github.event.inputs.bump || 'patch' }}" >> $GITHUB_ENV
- name: download artifacts
uses: actions/download-artifact@v4
with:
name: '${{ needs.build-tauri.outputs.channel }}-${{ matrix.platform }}-${{ github.run_number }}'
Expand Down

0 comments on commit ca93630

Please sign in to comment.