Automatic release and versioning #9
Workflow file for this run
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
# This GitHub action can publish assets for release when a tag is created. | |
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0). | |
# | |
# This uses an action (paultyng/ghaction-import-gpg) that assumes you set your | |
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE` | |
# secret. If you would rather own your own GPG handling, please fork this action | |
# or use an alternative one for key handling. | |
# | |
# You will need to pass the `--batch` flag to `gpg` in your signing step | |
# in `goreleaser` to indicate this is being used in a non-interactive mode. | |
# | |
name: release-auto | |
#on: | |
# push: | |
# tags: | |
# - 'v*' | |
on: | |
push: | |
branches: [ master, develop, US852217-automatic-release ] | |
pull_request: | |
branches: [ master, develop, US852217-automatic-release ] | |
jobs: | |
get_pull_request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get the PR that this merge came from | |
uses: actions-ecosystem/action-get-merged-pull-request@136e2f3a66a0d28e8d85094e1042ddbe5abea267 | |
id: get-merged-pull-request | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
outputs: | |
pull_request_labels: ${{ steps.get-merged-pull-request.outputs.labels }} | |
pull_request_title: ${{ steps.get-merged-pull-request.outputs.title }} | |
pull_request_body: ${{ steps.get-merged-pull-request.outputs.body }} | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
#- name: Version Bump (dry-run) | |
# id: taggerDryRun | |
# uses: GregoryGost/[email protected] | |
# with: | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
# dryrun: true | |
# prefix: v | |
# releasetype: major | |
- name: Version Bump | |
run: | | |
out=$(git tag | tail -1) | |
echo "The last tag was: $out" | |
#- name: echo new tag | |
# run: | | |
# echo "The next tag version will be: ${{ steps.taggerDryRun.outputs.newtag }}" | |