uuuuu38438 / SwiftAction

Swift support for GitHub Actions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Swift Action

Provides Swift support for GitHub Actions.

Usage

To begin using this action, you only need to define args in the GitHub Action, which will be automatically forwarded to the swift binary (eg. swift <args>).

If you need more control over the process, you can define runs instead, which will override the swift binary (eg. <runs> <args>).

workflow "main" {
  on = "push"
  resolves = ["swift_build"]
}

action "swift_build" {
  uses = "Didstopia/SwiftAction@v1.0.0"
  args = "build"
}

To use the latest development version of this action, change the version number to master (eg. Didstopia/SwiftAction@master).

License

MIT

About

Swift support for GitHub Actions.

License:MIT License


Languages

Language:Dockerfile 69.8%Language:HCL 30.2%