-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/upload-artifact from 2.3.0 to 2.3.1 (#235)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.0 to 2.3.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2.3.0...v2.3.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a3c77c3
commit df4087f
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
- name: Build project | ||
run: scripts/build.sh | ||
- name: Archive artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
if: ${{ success() }} | ||
with: | ||
name: DLT-macOS-${{ matrix.xcode }} | ||
|
@@ -57,7 +57,7 @@ jobs: | |
- name: Make artifact executable | ||
run: chmod -R +x build/release | ||
- name: Archive artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
if: ${{ success() }} | ||
with: | ||
name: DLT-${{ matrix.ubuntu }} | ||
|
@@ -82,7 +82,7 @@ jobs: | |
- name: Build ${{ matrix.task }} | ||
run: $env:WORKSPACE=$env:GITHUB_WORKSPACE; $env:QTDIR=$env:Qt5_DIR.Replace('/','\'); ./build_${{ matrix.task }}_windows_qt5_MSVC.bat | ||
- name: Archive artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
if: ${{ success() }} | ||
with: | ||
name: DLT-Windows-${{ matrix.task }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ jobs: | |
- name: Archive artifact | ||
run: zip DLT-macOS.zip -r build/release | ||
- name: Upload DLT artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: DLT-Mac | ||
path: DLT-macOS.zip | ||
|
@@ -57,7 +57,7 @@ jobs: | |
- name: Archive artifact | ||
run: zip DLT-Linux.zip -r build/release | ||
- name: Upload DLT artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: DLT-Linux | ||
path: DLT-Linux.zip | ||
|
@@ -84,7 +84,7 @@ jobs: | |
- name: Archive artifact | ||
run: Compress-Archive -Path .\build\dist -DestinationPath DLT-Windows-${{ matrix.task }}.zip | ||
- name: Upload DLT artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
name: DLT-Windows-${{ matrix.task }} | ||
path: DLT-*.zip | ||
|