Prepare Release #6
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: Prepare Release | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseType: | |
description: 'Release Type' | |
required: true | |
default: 'patch' | |
type: choice | |
options: | |
- major | |
- minor | |
- patch | |
# push: | |
# tags: | |
# - '*' | |
jobs: | |
prepare-release: | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "Release type: $TYPE" | |
env: | |
TYPE: ${{ inputs.releaseType }} | |
- uses: actions/checkout@master | |
- name: Get Next Version | |
uses: reecetech/[email protected] | |
id: version | |
with: | |
scheme: semver | |
increment: "${{ env.TYPE }}" | |
- name: Update theme TOML | |
run: sed -i "s/${{ steps.version.outputs.current-version }}/${{ steps.version.outputs.version }}/g" ./theme.toml | |
- name: Generate Changelog | |
uses: heinrichreimer/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
user: mattstratton | |
project: castanet | |
# futureRelease: ${{ steps.version.outputs.version }} | |
issues: "true" | |
issuesWoLabels: "false" | |
pullRequests: "true" | |
prWoLabels: "false" | |
compareLink: "false" | |
excludeLabels: 'duplicate,question,invalid,wontfix,do-not-merge,no-changelog' | |
- run: pwd | |
- name: Commit changed files | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: '["theme.toml", "CHANGELOG.md"]' | |
author_name: "Matt Stratton" | |
author_email: "[email protected]" | |
message: "Update theme to version ${{ steps.version.outputs.version }}" | |
tag: "${{ steps.version.outputs.version }} --force" | |
tag_push: '--force' | |
# - name: Create Zip File For Release | |
# uses: thedoctor0/zip-release@master | |
# with: | |
# command: "mkdir -p release" | |
# type: 'zip' | |
# filename: "release/${{ github.ref_name }}.zip" | |
# exclusions: '*.git* /*node_modules/* /*exampleSite/* /*.circleci/* /*bin/* /*gulp/* /*images/* /*release/* /*test/* /*utils/* .nvmrc CODE_OF_CONDUCT.md contributing.json CONTRIBUTING.md gulpfile.js lighthouserc.js matt-test.txt netlify.toml package.json package-lock.json' | |
# - name: Upload Release | |
# uses: ncipollo/release-action@v1 | |
# with: | |
# artifacts: "release/${{ github.ref_name }}.zip" | |
# generateReleaseNotes: true | |
# makeLatest: true | |
# token: ${{ secrets.GITHUB_TOKEN }} |