Merge pull request #71 from nmccready/dependabot/go_modules/github.co… #83
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 | |
on: | |
push: | |
branches: ["master"] | |
tags-ignore: ['**'] | |
jobs: | |
tests: | |
uses: ./.github/workflows/tests.yml | |
tag-release: | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- uses: actions/checkout@v4 | |
with: # important, must be defined on checkout to kick publish (defining in setup/node doesn't work) | |
token: ${{ secrets.GH_TOKEN }} | |
- name: node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
# cache: "npm" # needs lockfile if enabled | |
- name: go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.19 | |
- name: tag release | |
run: | | |
# ignore if commit message is chore(release): ... | |
if [[ $(git log -1 --pretty=%B) =~ ^chore\(release\):.* ]]; then | |
echo "Commit message starts with 'chore(release):', skipping release" | |
exit 0 | |
fi | |
git config --local user.email "creadbot@github.com" | |
git config --local user.name "creadbot_github" | |
set -v | |
npm install | |
npx standard-version | |
git push | |
git push --tags |