fix(goreleaser): special chars should be wrapped in "
(#964)
#157
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: [ main ] | |
tags: | |
- 'v*.*.*' | |
paths: | |
- '**/*.rs' | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
- '.github/workflows/release.yml' | |
- '.goreleaser.yaml' | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
concurrency: | |
group: release-${{ github.event_name }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: write | |
discussions: write | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
cache-subdir: darwin | |
- os: ubuntu-22.04 | |
cache-subdir: linux | |
_ids: --id linux-x64-wayland --id linux-x64-x11 | |
- os: ubuntu-22.04-arm | |
cache-subdir: linux | |
_ids: --id linux-arm64-wayland --id linux-arm64-x11 | |
- os: windows-latest | |
cache-subdir: windows | |
fail-fast: false | |
outputs: | |
cache-hit: ${{ steps.cache-check.outputs.cache-hit }} | |
env: | |
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} | |
MACOS_SIGN_P12: ${{ secrets.MACOS_SIGN_P12 }} | |
MACOS_SIGN_PASSWORD: ${{ secrets.MACOS_SIGN_PASSWORD }} | |
MACOS_NOTARY_ISSUER_ID: ${{ secrets.MACOS_NOTARY_ISSUER_ID }} | |
MACOS_NOTARY_KEY: ${{ secrets.MACOS_NOTARY_KEY }} | |
MACOS_NOTARY_KEY_ID: ${{ secrets.MACOS_NOTARY_KEY_ID }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v4 | |
with: | |
path: dist/${{ matrix.cache-subdir }} | |
key: goreleaser-${{ matrix.os }}-${{ github.sha }} | |
enableCrossOsArchive: ${{ matrix.os == 'windows-latest' }} | |
lookup-only: true | |
fail-on-cache-miss: false | |
id: cache-check | |
- if: matrix.os == 'macos-latest' | |
run: rustup target add x86_64-apple-darwin | |
- if: matrix.os == 'windows-latest' | |
run: rustup target add aarch64-pc-windows-msvc | |
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && steps.cache-check.outputs.cache-hit != 'true' | |
uses: goreleaser/[email protected] | |
with: | |
distribution: goreleaser-pro | |
version: nightly | |
args: release --clean --split ${{ matrix._ids }} | |
- if: (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/v'))) && steps.cache-check.outputs.cache-hit != 'true' | |
uses: goreleaser/[email protected] | |
with: | |
distribution: goreleaser-pro | |
version: nightly | |
args: release --clean --split ${{ matrix._ids }} --nightly --skip=winget | |
release: | |
# skip if cache exists for same commit, since we probably already released | |
if: needs.build.outputs.cache-hit != 'true' | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v4 | |
with: | |
key: goreleaser-macos-latest-${{ github.sha }} | |
path: dist/darwin | |
fail-on-cache-miss: true | |
- uses: actions/cache@v4 | |
with: | |
key: goreleaser-windows-latest-${{ github.sha }} | |
path: dist/windows | |
fail-on-cache-miss: true | |
- uses: actions/cache@v4 | |
with: | |
key: goreleaser-ubuntu-22.04-arm-${{ github.sha }} | |
path: dist/linux | |
fail-on-cache-miss: true | |
- name: workaround to avoid conflicts b/w linux x64/arm64 caches | |
run: | | |
# rename linux to linux-arm64, to avoid cache restore conflicts | |
mv dist/linux dist/linux-arm64 | |
# update paths in artifacts.json (dist/linux -> dist/linux-arm64) | |
sed -i 's/dist\/linux/dist\/linux-arm64/g' dist/linux-arm64/artifacts.json | |
- uses: actions/cache@v4 | |
with: | |
key: goreleaser-ubuntu-22.04-${{ github.sha }} | |
path: dist/linux | |
fail-on-cache-miss: true | |
- uses: goreleaser/[email protected] | |
with: | |
distribution: goreleaser-pro | |
version: nightly | |
args: continue --merge | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} |