[Repo] Update CODEOWNERS for dashboards resources #648
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
# Copied from https://github.com/hashicorp/terraform-provider-scaffolding/blob/master/.github/workflows/release.yml | |
name: release | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- master | |
jobs: | |
create_release: | |
name: Create release | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/') | |
steps: | |
- name: Get GitHub App token | |
id: get_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.PIPELINE_GITHUB_APP_ID }} | |
private_key: ${{ secrets.PIPELINE_GITHUB_APP_PRIVATE_KEY }} | |
- name: Create tag | |
id: create_tag | |
uses: actions/github-script@v6 | |
env: | |
RELEASE_BRANCH: ${{ github.head_ref }} | |
with: | |
github-token: ${{ steps.get_token.outputs.token }} | |
script: | | |
const tagName = `v${process.env.RELEASE_BRANCH.split("/")[1]}`; | |
await github.rest.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: `refs/tags/${tagName}`, | |
sha: context.payload.pull_request.merge_commit_sha, | |
}); | |
core.setOutput("tag_name", tagName); | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ steps.create_tag.outputs.tag_name }} | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Import GPG key | |
id: import_gpg | |
uses: paultyng/ghaction-import-gpg@v2.1.0 | |
env: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
PASSPHRASE: ${{ secrets.PASSPHRASE }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v2 | |
with: | |
version: latest | |
args: release --rm-dist | |
env: | |
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |