mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-02 19:43:00 +00:00
| datasource | package | from | to | | ----------- | ------------------------------- | ------- | ------- | | github-tags | actions/create-github-app-token | v1.11.0 | v1.11.1 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
49 lines
1.6 KiB
YAML
49 lines
1.6 KiB
YAML
# 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 (crazy-max/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.
|
|
#
|
|
name: Publish Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
goreleaser:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Generate Short Lived OAuth App Token
|
|
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
|
|
id: app-token
|
|
with:
|
|
app-id: "${{ secrets.BOT_APP_ID }}"
|
|
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
|
|
owner: "${{ github.repository_owner }}"
|
|
repositories: "${{ github.event.repository.name }}"
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Import GPG key
|
|
id: import_gpg
|
|
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # v6.2.0
|
|
with:
|
|
gpg_private_key: "${{ secrets.GPG_PRIVATE_KEY }}"
|
|
passphrase: "${{ secrets.PASSPHRASE }}"
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@9ed2f89a662bf1735a48bc8557fd212fa902bebf # v6.1.0
|
|
with:
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GPG_FINGERPRINT: "${{ steps.import_gpg.outputs.fingerprint }}"
|
|
GITHUB_TOKEN: "${{ steps.app-token.outputs.token }}"
|