Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kekefreedog committed Oct 29, 2023
1 parent d908738 commit edfe1f6
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/publishing.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publishing
name: Update Version Workflow

on:
release:
Expand All @@ -17,4 +17,22 @@ jobs:
- name: Install jq
run: sudo apt-get install -y jq
- name: Run custom script to update versions
run: ./scripts/update-versions.sh "${{ github.event.release.tag_name }}"
run: bash ./scripts/update-versions.sh "${{ github.event.release.tag_name }}"

# If there's an updated version of version-composer that resolves the add-path issue, use it here:
# version-composer:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Version Composer
# uses: juliansangillo/version-composer@<new-version>

# If the update-package-version action requires a tag without the 'v' prefix, you might need to adjust your tagging scheme or find an alternative action.
# update-package-version:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# - uses: actions/checkout@v2
# - name: Update package.json version on release
# - uses: medallyon/update-package-version-on-release@v1

0 comments on commit edfe1f6

Please sign in to comment.