Experimenting with autotagging... #18
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 ] | |
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 | |
needs: | |
- get_pull_request | |
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" | |
echo "The label is: ${{ needs.get_pull_request.outputs.pull_request_labels }}" | |
- name: Set github user | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
- name: tag it | |
run: | | |
git tag -a "blah" -m "Release blah" | |
git push origin | |