Initial commit #5
Workflow file for this run
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: | |
tags: '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [amd64, arm64] | |
os: [darwin, freebsd, linux, windows] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21.4' | |
- name: Install dependencies | |
run: | | |
go mod download | |
- name: Build | |
run: | | |
GOARCH=${{ matrix.arch }} GOOS=${{ matrix.os }} go build -o vsc-theme-converter-${{ matrix.os }}-${{ matrix.arch }} ./main.go | |
# Tried gzip but without succeding of keeping execute permissions | |
- name: Zip | |
run: | | |
zip vsc-theme-converter-${{ matrix.os }}-${{ matrix.arch }}.zip vsc-theme-converter-${{ matrix.os }}-${{ matrix.arch }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: vsc-theme-converter-${{ matrix.os }}-${{ matrix.arch }}.zip | |
path: | | |
vsc-theme-converter-${{ matrix.os }}-${{ matrix.arch }}.zip | |
retention-days: 1 | |
publish: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
env: | |
GH_REPO: ${{ github.repository }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: write | |
steps: | |
# Must perform checkout first, since it deletes the target directory | |
# before running, and would therefore delete the downloaded artifacts | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
- name: Publish release | |
run: | | |
TAG_NAME=${{ github.ref_name }} | |
gh release create $TAG_NAME --title "$TAG_NAME" --target $GITHUB_SHA \ | |
vsc-theme-converter-*/* |