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
16 changes: 3 additions & 13 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ jobs:
runs-on: ubuntu-latest
if: github.ref_type == 'tag' # Guard to make sure we are releasing once
permissions:
id-token: write # required to use OIDC and retrieve Google Cloud Credentials
contents: write # required for goreleaser
contents: write # required for goreleaser to upload the release assets
packages: write # to push container images
env:
CHAINLOOP_VERSION: 0.8.89
CHAINLOOP_VERSION: 0.8.92
CHAINLOOP_ROBOT_ACCOUNT: ${{ secrets.CHAINLOOP_ROBOT_ACCOUNT }}
CONTAINER_IMAGE_CP: ghcr.io/chainloop-dev/chainloop/control-plane:${{ github.ref_name }}
CONTAINER_IMAGE_CAS: ghcr.io/chainloop-dev/chainloop/artifact-cas:${{ github.ref_name }}
Expand All @@ -29,7 +28,7 @@ jobs:

- name: Install Chainloop
run: |
curl -sfL https://chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}
curl -sfL https://docs.chainloop.dev/install.sh | bash -s -- --version v${{ env.CHAINLOOP_VERSION }}

- name: Download jq
run: |
Expand All @@ -45,15 +44,6 @@ jobs:
run: |
chainloop attestation init

# TODO: remove once we move the releases and the installation script to Github
- name: "Configure Google Cloud credentials"
id: "auth-google"
uses: "google-github-actions/auth@v0"
with:
token_format: "access_token"
workload_identity_provider: projects/1044976554810/locations/global/workloadIdentityPools/chainloop-github-pool/providers/github-provider
service_account: chainloop-release-github@bedrock-371810.iam.gserviceaccount.com

- name: Docker login to Github Packages
uses: docker/login-action@v2
with:
Expand Down
6 changes: 0 additions & 6 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ signs:
]
artifacts: all

# TODO: remove once we move the releases and the installation script to Github
blobs:
- provider: gs
bucket: chainloop-releases-public
folder: "cli/{{ .Version }}"

docker_signs:
# COSIGN_PASSWORD is also required to be present
- cmd: cosign
Expand Down