Release Zapier version #1
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: Release Zapier version | |
on: [workflow_dispatch] | |
jobs: | |
release-version: | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.FATTUREINCLOUD_BOT_TOKEN }} | |
- id: init-git | |
name: Init GIT | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "fattureincloud-bot" | |
- id: setup-node | |
name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
- id: setup-libraries | |
name: Install libraries | |
run: | | |
npm install -g yarn | |
yarn global add standard-version | |
yarn global add zapier-platform-cli | |
sudo add-apt-repository ppa:rmescandon/yq -y | |
sudo apt update | |
sudo apt install yq -y | |
yarn | |
cd ./scripts/ | |
yarn | |
# We read the version from the version.yaml file and create the tag | |
# If it is needed to bump version, launch the related workflow | |
- id: read-zapier-version | |
name: Read Zapier version | |
run: | | |
VERSION=$(yq e '.info.version' ./version.yaml) | |
echo "Releasing version: $VERSION" | |
echo "version=$VERSION" >> $GITHUB_ENV | |
# Here we use standard-version just to generate the changelog | |
- id: generate-changelog | |
name: Generate Changelog | |
run: | | |
standard-version --skip.bump --skip.tag | |
- id: git-push | |
name: Pushing to Git repo | |
if: ${{ !env.ACT }} | |
run: | | |
git push origin | |
- id: save-commit-sha | |
name: Save latest commit sha | |
run: | | |
COMMIT_SHA=$(git rev-parse HEAD) | |
echo "commit_sha=$COMMIT_SHA" >> $GITHUB_ENV | |
- id: create-tag | |
name: Create tag | |
if: ${{ !env.ACT }} | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ github.token }} | |
script: | | |
github.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: "refs/tags/v${{ env.version }}", | |
sha: "${{ env.commit_sha }}" | |
}) | |
- id: zapier-push | |
name: Zapier push | |
env: | |
ZAPIER_DEPLOY_KEY: ${{ secrets.ZAPIER_DEPLOY_KEY }} | |
run: | | |
zapier push |