Apply GitHub workflow changes
Some checks failed
build / go-version (push) Has been cancelled
build / Parse version file (push) Has been cancelled
Go checks / go-checks (push) Has been cancelled
build / vault_image:vault-enterprise:1.17.18-ent tf_version:1.11.4 (push) Has been cancelled
build / vault_image:vault-enterprise:1.17.18-ent tf_version:1.12.2 (push) Has been cancelled
build / vault_image:vault-enterprise:1.17.18-ent tf_version:latest (push) Has been cancelled
build / vault_image:vault-enterprise:1.18.15-ent tf_version:1.11.4 (push) Has been cancelled
build / build-pre (push) Has been cancelled
build / Go darwin 386 build (push) Has been cancelled
build / Go freebsd 386 build (push) Has been cancelled
build / Go linux 386 build (push) Has been cancelled
build / Go windows 386 build (push) Has been cancelled
build / Go darwin amd64 build (push) Has been cancelled
build / Go freebsd amd64 build (push) Has been cancelled
build / Go linux amd64 build (push) Has been cancelled
build / Go windows amd64 build (push) Has been cancelled
build / Go freebsd arm build (push) Has been cancelled
build / Go linux arm build (push) Has been cancelled
build / vault_image:vault-enterprise:1.18.15-ent tf_version:1.12.2 (push) Has been cancelled
build / vault_image:vault-enterprise:1.18.15-ent tf_version:latest (push) Has been cancelled
build / vault_image:vault-enterprise:1.19.12-ent tf_version:1.11.4 (push) Has been cancelled
build / vault_image:vault-enterprise:1.19.12-ent tf_version:1.12.2 (push) Has been cancelled
build / vault_image:vault-enterprise:1.19.12-ent tf_version:latest (push) Has been cancelled
build / vault_image:vault-enterprise:1.20.5-ent tf_version:1.11.4 (push) Has been cancelled
build / vault_image:vault-enterprise:1.20.5-ent tf_version:1.12.2 (push) Has been cancelled
build / vault_image:vault-enterprise:1.20.5-ent tf_version:latest (push) Has been cancelled
build / vault_image:vault-enterprise:1.21.1-ent tf_version:1.11.4 (push) Has been cancelled
build / vault_image:vault-enterprise:1.21.1-ent tf_version:1.12.2 (push) Has been cancelled
build / vault_image:vault-enterprise:1.21.1-ent tf_version:latest (push) Has been cancelled
build / vault_image:vault:latest tf_version:1.11.4 (push) Has been cancelled
build / vault_image:vault:latest tf_version:1.12.2 (push) Has been cancelled
build / vault_image:vault:latest tf_version:latest (push) Has been cancelled
build / generate-metadata-file (push) Has been cancelled
build / Go darwin arm64 build (push) Has been cancelled
build / Go linux arm64 build (push) Has been cancelled
build / vault_image:vault-enterprise:1.16.27-ent tf_version:1.11.4 (push) Has been cancelled
build / vault_image:vault-enterprise:1.16.27-ent tf_version:1.12.2 (push) Has been cancelled
build / vault_image:vault-enterprise:1.16.27-ent tf_version:latest (push) Has been cancelled
build / upload-terraform-registry-manifest-artifact (push) Has been cancelled
build / build-done (push) Has been cancelled

This commit is contained in:
OpenTofu Core Development Team 2024-04-29 17:07:49 +02:00
parent 0cea5fa544
commit e4c7ce0742
4 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,12 @@
name: Trigger Artifact Release
on:
workflow_dispatch:
permissions:
contents: read
actions: write
jobs:
trigger:
uses: opentofu/scripts/.github/workflows/trigger.yml@main

33
.github/workflows/artifact-release.yml vendored Normal file
View file

@ -0,0 +1,33 @@
name: Artifact Release
on:
workflow_dispatch:
inputs:
tag:
description: "Release tag (v#.#.#)"
type: string
required: true
permissions:
contents: write
jobs:
release-dispatch:
if: inputs.tag != ''
uses: opentofu/scripts/.github/workflows/release.yml@main
with:
tag: ${{ inputs.tag }}
secrets:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GH_PAT: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
release-push:
if: inputs.tag == ''
uses: opentofu/scripts/.github/workflows/release.yml@main
with:
tag: ${{ github.ref_name }}
secrets:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GH_PAT: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

11
.github/workflows/fork_sync.yml vendored Normal file
View file

@ -0,0 +1,11 @@
name: Sync Fork
on:
schedule:
- cron: '15 */4 * * *' # every 4 hours
workflow_dispatch: # on button click
jobs:
sync:
uses: opentofu/scripts/.github/workflows/sync.yml@main
secrets: inherit

17
.github/workflows/resign.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Artifacts Resign
on:
workflow_dispatch:
permissions:
contents: write
jobs:
resign:
uses: opentofu/scripts/.github/workflows/sign.yml@main
with:
owner: ${{ github.repository_owner }}
repo: ${{ github.event.repository.name }}
secrets:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GH_PAT: ${{ secrets.GH_PAT }}