Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/sitectl-plugin-goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -378,15 +378,15 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
repository: libops/terraform-linux-packages
ref: fcdfc5b1fe9eaa0bf80b82eec03870d240443e0f # main
ref: b14fd2f95b4017e897c595b3321b9cc3f48b5ddd # main
path: .libops-packages
persist-credentials: false

- name: Verify exact package publisher
shell: bash
working-directory: .libops-packages
env:
PACKAGE_PUBLISHER_SHA: fcdfc5b1fe9eaa0bf80b82eec03870d240443e0f
PACKAGE_PUBLISHER_SHA: b14fd2f95b4017e897c595b3321b9cc3f48b5ddd
run: |
set -euo pipefail
if [[ ! "$PACKAGE_PUBLISHER_SHA" =~ ^[0-9a-f]{40}$ ]]; then
Expand All @@ -412,7 +412,7 @@ jobs:
shell: bash
working-directory: .libops-packages
env:
PACKAGE_PUBLISHER_SHA: fcdfc5b1fe9eaa0bf80b82eec03870d240443e0f
PACKAGE_PUBLISHER_SHA: b14fd2f95b4017e897c595b3321b9cc3f48b5ddd
run: |
set -euo pipefail
image="libops/terraform-linux-packages:publisher-${PACKAGE_PUBLISHER_SHA}"
Expand Down Expand Up @@ -453,5 +453,5 @@ jobs:
RELEASE_VERSION: ${{ inputs.release-mode == 'full' && needs.release.outputs.version || inputs.release-version }}
PACKAGE_TOOLS_IMAGE: ${{ steps.package-tools.outputs.image }}
EXPECTED_PACKAGE_TOOLS_IMAGE_ID: ${{ steps.package-tools.outputs.image-id }}
PACKAGE_PUBLISHER_SHA: fcdfc5b1fe9eaa0bf80b82eec03870d240443e0f
PACKAGE_PUBLISHER_SHA: b14fd2f95b4017e897c595b3321b9cc3f48b5ddd
run: bash scripts/publish-release-from-environment.sh
2 changes: 1 addition & 1 deletion ci/github/sitectl_plugin_release_contract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
)

const linuxPackagePublisherCommit = "fcdfc5b1fe9eaa0bf80b82eec03870d240443e0f"
const linuxPackagePublisherCommit = "b14fd2f95b4017e897c595b3321b9cc3f48b5ddd"

func pluginReleaseWorkflow(t *testing.T) string {
t.Helper()
Expand Down