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

build(ci): update workflow #160

Merged
merged 1 commit into from
Dec 1, 2023
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
platform: x64
steps:
- name: Check out files
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand All @@ -61,7 +61,7 @@ jobs:
run: msbuild /m /v:minimal /p:Configuration=${{matrix.config}} /p:Platform=${{matrix.platform}} build/gsc-tool.sln

- name: Upload ${{matrix.arch}} ${{matrix.config}} binaries
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: windows-${{matrix.arch}}-${{matrix.config}}
path: |
Expand All @@ -80,7 +80,7 @@ jobs:
- arm64
steps:
- name: Check out files
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand All @@ -103,7 +103,7 @@ jobs:
make config=${{matrix.config}}_${{matrix.arch}} -j$(sysctl -n hw.logicalcpu)

- name: Upload ${{matrix.arch}} ${{matrix.config}} binaries
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: macos-${{matrix.arch}}-${{matrix.config}}
path: |
Expand All @@ -122,7 +122,7 @@ jobs:
- arm64
steps:
- name: Check out files
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
CXX: clang++

- name: Upload ${{matrix.arch}} ${{matrix.config}} binaries
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: linux-${{matrix.arch}}-${{matrix.config}}
path: |
Expand All @@ -167,7 +167,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/') && (github.event.base_ref == 'refs/heads/prod' || github.event.base_ref == 'refs/heads/dev')
steps:
- name: Check out files
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4

- name: Download Binaries
uses: actions/[email protected]
Expand Down
Loading