Skip to content

Notarization, step 1 #5

Notarization, step 1

Notarization, step 1 #5

name: Storage Advisor CLI Release
on:
release:
types: [created]
permissions:
contents: write
packages: write
jobs:
releases-matrix:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.20.13
project_path: "./tools/storage-advisor/src"
binary_name: "storage-advisor"
notarize:
needs: releases-matrix
runs-on: macos-latest
steps:
- uses: actions/download-artifact@v4
- name: Obtain release name
id: release-id
run: echo "RELEASE_TAG=$(jq -r .release.tag_name ${GITHUB_EVENT_PATH})" >> "$GITHUB_OUTPUT"
- name: Download artifacts
uses: uses: actions/upload-artifact@v4

Check failure on line 45 in .github/workflows/storage-advisor-release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/storage-advisor-release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 45
with:
name: storage-advisor-cli-${{ steps.release-id.outputs.RELEASE_TAG }}-darwin-amd64.tar.gz