Skip to content

Commit

Permalink
workflows: update release with minor fixes (#10040)
Browse files Browse the repository at this point in the history
* workflows: update release with minor fixes

Signed-off-by: Patrick Stephens <[email protected]>

* workflows: update release with minor fixes

Signed-off-by: Patrick Stephens <[email protected]>

---------

Signed-off-by: Patrick Stephens <[email protected]>
  • Loading branch information
patrick-stephens authored Mar 4, 2025
1 parent ea3ffc1 commit 8e8c9d6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/staging-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ jobs:
mkdir -p "packaging/releases/$DISTRO"
aws s3 sync "s3://${{ secrets.AWS_S3_BUCKET_RELEASE }}/$DISTRO" "packaging/releases/$DISTRO" --no-progress
aws s3 sync "s3://${{ secrets.AWS_S3_BUCKET_STAGING }}/$DISTRO" "packaging/releases/$DISTRO" --no-progress
aws s3 sync "s3://${{ secrets.AWS_S3_BUCKET_STAGING }}/${{ github.event.inputs.version }}/$DISTRO" "packaging/releases/$DISTRO" --no-progress
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -631,7 +632,7 @@ jobs:
GHCR_RELEASE_IMAGE_NAME: ghcr.io/${{ github.event.inputs.github-image || github.repository }}
steps:
- name: Install cosign
uses: sigstore/cosign-installer@v2
uses: sigstore/cosign-installer@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down Expand Up @@ -1020,6 +1021,12 @@ jobs:
- name: Release 3.2
if: startsWith(inputs.version, '3.2')
uses: actions/checkout@v4
with:
ref: 3.2

- name: Release 4.0
if: startsWith(inputs.version, '4.0')
uses: actions/checkout@v4
with:
ref: master

Expand Down

0 comments on commit 8e8c9d6

Please sign in to comment.