Skip to content

Add release action

Add release action #1

Workflow file for this run

name: Release
on:
push:
tags:
- *.*.*

Check failure on line 6 in .github/workflows/Release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/Release.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
jobs:
release:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -c release --arch arm64 --arch x86_64 --product xcc
- name: Compress
run: tar -czf ${{ github.ref_name }}.tar.gz -C .build/apple/Products/Release xcc
- name: Release
run: gh release create ${{ github.ref_name }} ${{ github.ref_name }}.tar.gz