https://github.com/getsidetrack/action-swift-template
GitHub Actions Template for Swift Tools
https://github.com/getsidetrack/action-swift-template
github-actions swift
Last synced: 18 days ago
JSON representation
GitHub Actions Template for Swift Tools
- Host: GitHub
- URL: https://github.com/getsidetrack/action-swift-template
- Owner: getsidetrack
- License: mit
- Created: 2022-04-23T16:35:32.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-23T17:35:57.000Z (about 4 years ago)
- Last Synced: 2026-02-11T17:55:23.363Z (4 months ago)
- Topics: github-actions, swift
- Language: Swift
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello World Swift action
This action prints "Hello World" to the log or "Hello" + the name of a person to greet. This is designed as a template for your own GitHub Actions written in Swift and is based on GitHub's ["Hello World" Docker template](https://github.com/actions/hello-world-docker-action) and [supporting documentation](https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action).
## Inputs
### `who-to-greet`
**Required** The name of the person to greet. Default `"World"`.
## Outputs
### `time`
The time we greeted you.
## Example usage
```yaml
uses: getsidetrack/action-template-swift@main
with:
who-to-greet: 'Mona the Octocat'
```