Skip to content

Build and Release

Build and Release #3

Workflow file for this run

name: Build and Release
on: workflow_dispatch
jobs:
build-and-release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Swift
uses: swift-actions/[email protected]
- name: Build for Release
run: swift build -c release
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts-${{ matrix.os }}
path: .build/release/swift-gopher