Update Version Workflow #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publishing | |
on: | |
release: | |
types: [published] | |
jobs: | |
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 | |
version-composer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Version Composer | |
uses: juliansangillo/[email protected] | |
update-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run custom script to update versions | |
run: ./scripts/update-versions.sh "${{ github.event.release.tag_name }}" |