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 @@ -305,15 +305,15 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
repository: libops/terraform-linux-packages
ref: 72e96d0e82e1a6992d08b98f6fb8c07ccc90c989 # main
ref: 3864ea410d49df5b0ee0ddcf2b2d18243167edda # main
path: .libops-packages
persist-credentials: false

- name: Verify exact package publisher
shell: bash
working-directory: .libops-packages
env:
PACKAGE_PUBLISHER_SHA: 72e96d0e82e1a6992d08b98f6fb8c07ccc90c989
PACKAGE_PUBLISHER_SHA: 3864ea410d49df5b0ee0ddcf2b2d18243167edda
run: |
set -euo pipefail
if [[ ! "$PACKAGE_PUBLISHER_SHA" =~ ^[0-9a-f]{40}$ ]]; then
Expand All @@ -339,7 +339,7 @@ jobs:
shell: bash
working-directory: .libops-packages
env:
PACKAGE_PUBLISHER_SHA: 72e96d0e82e1a6992d08b98f6fb8c07ccc90c989
PACKAGE_PUBLISHER_SHA: 3864ea410d49df5b0ee0ddcf2b2d18243167edda
run: |
set -euo pipefail
image="libops/terraform-linux-packages:publisher-${PACKAGE_PUBLISHER_SHA}"
Expand Down Expand Up @@ -380,5 +380,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: 72e96d0e82e1a6992d08b98f6fb8c07ccc90c989
PACKAGE_PUBLISHER_SHA: 3864ea410d49df5b0ee0ddcf2b2d18243167edda
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 = "72e96d0e82e1a6992d08b98f6fb8c07ccc90c989"
const linuxPackagePublisherCommit = "3864ea410d49df5b0ee0ddcf2b2d18243167edda"

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