Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflow action #201

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ jobs:
with:
xcode-version: latest-stable
- name: Checkout
uses: actions/checkout@master
- uses: actions/checkout@v2
- name: submodules-init
uses: snickerbockers/submodules-init@v4
uses: actions/checkout@v4
with:
submodules: recursive
- name: Import PAT from Actions secrets
run: |
cd SwiftPamphletApp/App
Expand All @@ -27,7 +26,7 @@ jobs:
/bin/bash -c ./compile.command
zip -r9 戴铭的开发小册子.zip 戴铭的开发小册子.app
- name: Upload App.zip
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: "戴铭的开发小册子.zip"
path: "戴铭的开发小册子.zip"
Loading