Skip to content

Commit

Permalink
Added action
Browse files Browse the repository at this point in the history
  • Loading branch information
rwbutler committed Nov 8, 2023
1 parent ad0230c commit fa3f9cb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Swift

on: [push]

jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
swift: ["5.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v1.25.0
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- id: foo
uses: rwbutler/swift-relelase@0.0.3
with:
who-to-greet: 'Mona the Octocat'

0 comments on commit fa3f9cb

Please sign in to comment.