Skip to content

Commit

Permalink
ci: Update zip generation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanViknar committed Oct 2, 2023
1 parent e6a22e1 commit 29c6a4e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/zip-generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create extension zip
shell: bash
run: ./generate-release-bundle.sh
- name: Extract current branch name
shell: bash
run: ref="${GITHUB_REF#refs/heads/}" && echo "::set-output name=branch::${ref////-}"
id: ref
id: branch-name
uses: tj-actions/branch-names@v7
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: noiseclapper-artifacts-${{ steps.ref.outputs.branch }}
name: noiseclapper-artifacts-${{ steps.branch-name.outputs.current_branch }}
path: Noiseclapper@JordanViknar.zip

0 comments on commit 29c6a4e

Please sign in to comment.