feat: add awesome g0v project owners to ARAY User json #9
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: Bump Version & Trigger Amplify build | |
on: | |
push: | |
branches: [ develop ] | |
paths-ignore: | |
- package.json | |
- package-lock.json | |
jobs: | |
bump-version: | |
name: "Bump Version on release branch" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.ACTION_GITHUB_TOKEN }} # ACTION_GITHUB_TOKEN is a personal access secrets | |
- name: "Automated Version Bump" | |
id: version-bump | |
uses: "phips28/gh-action-bump-version@master" | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTION_GITHUB_TOKEN }} | |
with: | |
skip-tag: 'true' | |
# version-type: 'patch' | |
# default: 'patch' | |
# tag-prefix: 'v' | |
- name: Trigger Amplify Build | |
run: curl -X POST -d {} "${{ secrets.AMPLIFY_WEBHOOK_URL }}" -H "Content-Type:application/json" |