Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Wei18 committed Sep 7, 2024
1 parent 279fada commit b3ae8bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Actions/Comment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ runs:
REPO: ${{ inputs.repo }}
TOKEN: ${{ inputs.token }}
name: Run Comment
run: mint run Wei18/GitHubSwiftActions@main Comment
run: ~/.mint/bin/mint run Wei18/GitHubSwiftActions@main Comment
shell: bash
using: composite
17 changes: 3 additions & 14 deletions Sources/YamlWriter/CLIYamlBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,13 @@ struct CLIYamlBuilder {
"using": "composite",
"steps": [
[
"name": "Setup Swift",
"uses": "swift-actions/setup-swift@v2",
"with": [
"swift-version": "5.10.0",
],
],
[
"uses": "actions/cache@v4",
"with": [
"path": "../../.build",
"key": "${{ runner.os }}-spm-${{ hashFiles('/Package.resolved') }}",
"restore-keys": "${{ runner.os }}-spm-",
]
"name": "Setup Swift, Mint, Cache, etc.",
"uses": "Wei18/GitHubSwiftActions/Actions/SetUp@main",
],
[
"name": "Run \(name)",
// FIXME: owner/repo
"run": "mint run Wei18/GitHubSwiftActions@main \(name)",
"run": "~/.mint/bin/mint run Wei18/GitHubSwiftActions@main \(name)",
"env": envDict,
"shell": "bash",
],
Expand Down

0 comments on commit b3ae8bb

Please sign in to comment.