Skip to content

Merge pull request #327 from nowsprinting/release/4.0.2 #57

Merge pull request #327 from nowsprinting/release/4.0.2

Merge pull request #327 from nowsprinting/release/4.0.2 #57

Workflow file for this run

name: Release if bump version number
on:
push:
branches:
- master
paths:
- package.json
jobs:
check-bump-version:
if: github.repository_owner == 'nowsprinting' # Skip on forked repo
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
new-version: ${{ steps.diff.outputs.version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 100
- name: Get version number diff
run: |
version="$(git diff ${{ github.event.before }}..${{ github.event.after }} package.json | sed -nr '/^\+ +\"version\":/p' | sed -r 's/^.*\"([0-9a-z\.\-\+]+)\"*.$/\1/')"
echo "version=$version" >> "$GITHUB_OUTPUT"
id: diff
release:
needs: check-bump-version
if: ${{ needs.check-bump-version.outputs.new-version }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
actions: read
steps:
- uses: release-drafter/release-drafter@v6
with:
config-name: release-drafter.yml
version: v${{ needs.check-bump-version.outputs.new-version }}
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- name: Update major and latest branch # for GitHub Actions, see https://github.com/actions/toolkit/blob/master/docs/action-versioning.md#versioning
run: |
major=$(echo v"${{ needs.check-bump-version.outputs.new-version }}" | sed -r 's/(v[0-9]+).*/\1/')
git push --force origin "HEAD:refs/heads/$major"
git push --force origin "HEAD:refs/heads/latest"
- uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
fields: repo,message,job,pullRequest
mention: here
if_mention: failure
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}