Skip to content

Use binary artifacts for releases #18

Use binary artifacts for releases

Use binary artifacts for releases #18

Workflow file for this run

name: Feature Branch
on:
workflow_dispatch:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
- release/v*
paths-ignore:
- '.github/**'
- 'docs/**'
- 'examples/**'
- 'test/**'
permissions:
contents: read
packages: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
ci-go:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test Snapshot Release
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --config ./dev.goreleaser.yaml --clean --snapshot
- name: Upload Test Release Assets
uses: actions/upload-artifact@v4
with:
name: github-status-updater
path: dist/*
retention-days: 3
ci-docker:
runs-on: ubuntu-latest
steps:
- name: "Checkout source code at current commit"
uses: actions/checkout@v4
- name: Build
id: build
uses: cloudposse/[email protected]
with:
registry: ghcr.io
organization: "${{ github.event.repository.owner.login }}"
repository: "${{ github.event.repository.name }}"
login: "${{ github.actor }}"
password: "${{ secrets.GITHUB_TOKEN }}"
platforms: linux/amd64,linux/arm64
release:
if: github.event_name == 'push'
needs: [ci-go, ci-docker]
uses: cloudposse/.github/.github/workflows/shared-go-auto-release.yml@main

Check failure on line 78 in .github/workflows/feature-branch.yml

View workflow run for this annotation

GitHub Actions / Feature Branch

Invalid workflow file

The workflow is not valid. In .github/workflows/feature-branch.yml (Line: 78, Col: 11): Error from called workflow cloudposse/.github/.github/workflows/shared-go-auto-release.yml@main (Line: 167, Col: 28): A mapping was not expected
with:
publish: true
format: binary
secrets: inherit