fix: DWS-1702 Change trigger for ci workflow #5
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
# Terraform Provider release workflow. | |
name: CreateTag | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
types: [ closed ] | |
permissions: | |
contents: write | |
jobs: | |
create_tag: | |
environment: production | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.merge_commit_sha }} | |
fetch-depth: '0' | |
- name: Get previous tag | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
with: | |
fallback: 0.0.0 | |
- name: Bump version and push tag | |
uses: anothrNick/[email protected] # Don't use @master or @v1 unless you're happy to test the latest version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }} # if you don't want to set write permissions use a PAT token | |
WITH_V: true | |
DEFAULT_BUMP: patch | |
INITIAL_VERSION: ${{ steps.previoustag.outputs.tag }} |