Update auth methods form (#1981) #68
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
name: "Trigger Boundary UI release" | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
trigger-gha-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Release description | |
run: | | |
echo "Triggering release with a TAG ${GITHUB_REF#refs/tags/}" | |
- name: Trigger Release workflow in boundary-ui-releases | |
run: | | |
export GITHUB_TOKEN="${{ secrets.ELEVATED_GITHUB_TOKEN }}" | |
gh workflow run release.yml \ | |
--repo hashicorp/boundary-ui-releases \ | |
--ref main \ | |
-f TAG="${GITHUB_REF#refs/tags/}" |