Upload and download artifact must be same version
This commit is contained in:
parent
533994e4dd
commit
0cd7553aa2
1 changed files with 5 additions and 3 deletions
8
.github/workflows/continuous_integration.yml
vendored
8
.github/workflows/continuous_integration.yml
vendored
|
|
@ -110,7 +110,7 @@ jobs:
|
|||
|
||||
- name: Upload Package
|
||||
if: runner.os == 'Windows' # Remove to store packages of all targets
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: build/package
|
||||
name: ${{ matrix.config.name }} ${{ matrix.config.build_type }}
|
||||
|
|
@ -129,7 +129,8 @@ jobs:
|
|||
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
||||
|
||||
steps:
|
||||
- uses: actions/download-artifact@v4
|
||||
- name: Download artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: Visual Studio 2022 Release
|
||||
path: build
|
||||
|
|
@ -140,7 +141,8 @@ jobs:
|
|||
run: |
|
||||
ls -lR .
|
||||
|
||||
- uses: pyTooling/Actions/releaser@r0
|
||||
- name: Update nightly release
|
||||
uses: pyTooling/Actions/releaser@r0
|
||||
with:
|
||||
tag: nightly
|
||||
rm: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue