Skip to content

fixed release pipeline #4

fixed release pipeline

fixed release pipeline #4

Workflow file for this run

name: Release
on:
pull_request:
branches:
- main
release:
types: [created]
permissions:
contents: read
jobs:
publish-image:
#if: startsWith(github.ref, 'refs/tags/v') == true
runs-on: ubuntu-22.04
permissions:
id-token: write # This is the key for OIDC cosign!
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: sigstore/cosign-installer@main
with:
cosign-release: "v2.0.2"
- id: get_version
run: |
RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p')
echo "::set-output name=release_version::$RELEASE_VERSION"
- name: Get Docker tags
id: docker_meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/loft-sh/rancher-nodeless-plugin
tags: |
type=semver,pattern={{version}}
type=raw,value=latest
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: loft-sh
password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build and push the hooks
# uses: docker/build-push-action@v4
# working-directory: ./examples/hooks
# id: docker_build
# with:
# file: Dockerfile
# platforms: linux/amd64,linux/arm64
# push: true
# tags: "ghcr.io/loft-sh/vcluster-example-hooks:${{steps.get_version.outputs.release_version}}"
# labels: ${{ steps.docker_meta.outputs.labels }}
- name: Images digests for
run: echo ${{ steps.docker_build.outputs.digest }}
- name: Build and push the bootstrap
id: docker_build
working-directory: ./examples/bootstrap-with-deployment
uses: docker/build-push-action@v4

Check failure on line 65 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 65, Col: 9): Unexpected value 'uses' .github/workflows/release.yaml (Line: 66, Col: 9): Unexpected value 'with'
with:
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: "ghcr.io/loft-sh/vcluster-example-bootstrap-bootstrap-with-deployment:${{steps.get_version.outputs.release_version}}"
labels: ${{ steps.docker_meta.outputs.labels }}
- name: Images digests for bootstrap
run: echo ${{ steps.docker_build.outputs.digest }}
- name: Build and push import secret
working-directory: ./examples/import-secrets
id: docker_build
uses: docker/build-push-action@v4
with:
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: "ghcr.io/loft-sh/vcluster-example-import-secrets:${{steps.get_version.outputs.release_version}}"
labels: ${{ steps.docker_meta.outputs.labels }}
- name: Images digests for import secret
run: echo ${{ steps.docker_build.outputs.digest }}
- name: Build and push crd sync
working-directory: ./examples/crd-sync
id: docker_build
uses: docker/build-push-action@v4
with:
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: "ghcr.io/loft-sh/vcluster-example-crd-sync:${{steps.get_version.outputs.release_version}}"
labels: ${{ steps.docker_meta.outputs.labels }}
- name: Images digests for crd sync
run: echo ${{ steps.docker_build.outputs.digest }}