Skip to content

Commit ca96363

Browse files
committed
Fix: enableCrossOsArchive
1 parent 9485600 commit ca96363

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/Release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
with:
4545
path: build/package/
4646
key: awesome-ci-${{ github.sha }}-${{ hashFiles('build/package/awesome-ci*') }}
47+
enableCrossOsArchive: true
4748
restore-keys: |
4849
awesome-ci-${{ github.sha }}
4950
@@ -69,12 +70,11 @@ jobs:
6970
run: ls -la
7071

7172
- name: Publish Release
72-
run: awesome-ci release publish -releaseid "$ACI_RELEASE_ID" -assets "file=build/package/$ARTIFACT1,file=build/package/$ARTIFACT2" -body "scripts/release-template.md"
73+
run: awesome-ci release publish -releaseid "$ACI_RELEASE_ID" -assets "file=build/package/$ARTIFACT1" -body "scripts/release-template.md"
7374
env:
7475
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7576
ACI_RELEASE_ID: ${{ needs.create_release.outputs.releaseid }}
7677
ARTIFACT1: awesome-ci_${{ needs.create_release.outputs.version }}_amd64
77-
ARTIFACT2: awesome-ci_${{ needs.create_release.outputs.version }}_arm64
7878

7979
update_action:
8080
runs-on: ubuntu-latest

.github/workflows/branchPR.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
with:
6666
path: build/package/
6767
key: awesome-ci-${{ github.event.pull_request.head.sha }}-${{ hashFiles('build/package/awesome-ci*') }}
68+
enableCrossOsArchive: true
6869
restore-keys: |
6970
awesome-ci-${{ github.event.pull_request.head.sha }}
7071

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v2
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
5656
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
57+
uses: github/codeql-action/autobuild@v2
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
71+
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)