Bump actions/upload-artifact from 2 to 3 (#2656)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
cdbe2531ad
commit
298ed4deb8
|
@ -108,91 +108,91 @@ jobs:
|
||||||
run: npm run build:arm64 --if-present
|
run: npm run build:arm64 --if-present
|
||||||
|
|
||||||
- name: Upload Linux .zip x64 Artifact
|
- name: Upload Linux .zip x64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_x64
|
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_x64
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}.zip
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}.zip
|
||||||
|
|
||||||
- name: Upload Linux .7z x64 Artifact
|
- name: Upload Linux .7z x64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_x64.7z
|
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_x64.7z
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}.7z
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}.7z
|
||||||
|
|
||||||
- name: Upload Linux .zip ARMv7l Artifact
|
- name: Upload Linux .zip ARMv7l Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_armv7l
|
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_armv7l
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-armv7l.zip
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-armv7l.zip
|
||||||
|
|
||||||
- name: Upload Linux .7z ARMv7l Artifact
|
- name: Upload Linux .7z ARMv7l Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_armv7l.7z
|
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_armv7l.7z
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-armv7l.7z
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-armv7l.7z
|
||||||
|
|
||||||
- name: Upload Linux .zip ARM64 Artifact
|
- name: Upload Linux .zip ARM64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_arm64
|
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_arm64
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.zip
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.zip
|
||||||
|
|
||||||
- name: Upload Linux .7z ARM64 Artifact
|
- name: Upload Linux .7z ARM64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_arm64.7z
|
name: freetube_${{ steps.versionNumber.outputs.result }}_linux_portable_arm64.7z
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.7z
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.7z
|
||||||
|
|
||||||
- name: Upload .deb x64 Artifact
|
- name: Upload .deb x64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.deb
|
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.deb
|
||||||
path: build/freetube_${{ steps.versionNumber.outputs.result }}_amd64.deb
|
path: build/freetube_${{ steps.versionNumber.outputs.result }}_amd64.deb
|
||||||
|
|
||||||
- name: Upload .deb ARMv7l Artifact
|
- name: Upload .deb ARMv7l Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_armv7l.deb
|
name: freetube_${{ steps.versionNumber.outputs.result }}_armv7l.deb
|
||||||
path: build/freetube_${{ steps.versionNumber.outputs.result }}_armv7l.deb
|
path: build/freetube_${{ steps.versionNumber.outputs.result }}_armv7l.deb
|
||||||
|
|
||||||
- name: Upload .deb ARM64 Artifact
|
- name: Upload .deb ARM64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_arm64.deb
|
name: freetube_${{ steps.versionNumber.outputs.result }}_arm64.deb
|
||||||
path: build/freetube_${{ steps.versionNumber.outputs.result }}_arm64.deb
|
path: build/freetube_${{ steps.versionNumber.outputs.result }}_arm64.deb
|
||||||
|
|
||||||
- name: Upload AppImage x64 Artifact
|
- name: Upload AppImage x64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.AppImage
|
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.AppImage
|
||||||
path: build/FreeTube-${{ steps.versionNumber.outputs.result }}.AppImage
|
path: build/FreeTube-${{ steps.versionNumber.outputs.result }}.AppImage
|
||||||
|
|
||||||
- name: Upload AppImage ARMv7l Artifact
|
- name: Upload AppImage ARMv7l Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_armv7l.AppImage
|
name: freetube_${{ steps.versionNumber.outputs.result }}_armv7l.AppImage
|
||||||
path: build/FreeTube-${{ steps.versionNumber.outputs.result }}-armv7l.AppImage
|
path: build/FreeTube-${{ steps.versionNumber.outputs.result }}-armv7l.AppImage
|
||||||
|
|
||||||
- name: Upload AppImage ARM64 Artifact
|
- name: Upload AppImage ARM64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_arm64.AppImage
|
name: freetube_${{ steps.versionNumber.outputs.result }}_arm64.AppImage
|
||||||
path: build/FreeTube-${{ steps.versionNumber.outputs.result }}-arm64.AppImage
|
path: build/FreeTube-${{ steps.versionNumber.outputs.result }}-arm64.AppImage
|
||||||
|
|
||||||
- name: Upload .rpm x64 Artifact
|
- name: Upload .rpm x64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.rpm
|
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.rpm
|
||||||
|
@ -201,133 +201,133 @@ jobs:
|
||||||
# rpm are not built for armv7l
|
# rpm are not built for armv7l
|
||||||
|
|
||||||
- name: Upload .rpm ARM64 Artifact
|
- name: Upload .rpm ARM64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_arm64.rpm
|
name: freetube_${{ steps.versionNumber.outputs.result }}_arm64.rpm
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}.aarch64.rpm
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}.aarch64.rpm
|
||||||
|
|
||||||
- name: Upload Alpine .apk x64 Artifact
|
- name: Upload Alpine .apk x64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_alpine_amd64.apk
|
name: freetube_${{ steps.versionNumber.outputs.result }}_alpine_amd64.apk
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}.apk
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}.apk
|
||||||
|
|
||||||
- name: Upload Alpine .apk ARMv7l Artifact
|
- name: Upload Alpine .apk ARMv7l Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-armv7l')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_alpine_armv7l.apk
|
name: freetube_${{ steps.versionNumber.outputs.result }}_alpine_armv7l.apk
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-armv7l.apk
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-armv7l.apk
|
||||||
|
|
||||||
- name: Upload Alpine .apk ARM64 Artifact
|
- name: Upload Alpine .apk ARM64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_alpine_arm64.apk
|
name: freetube_${{ steps.versionNumber.outputs.result }}_alpine_arm64.apk
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.apk
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.apk
|
||||||
|
|
||||||
- name: Upload Pacman .pacman x64 Artifact
|
- name: Upload Pacman .pacman x64 Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.pacman
|
name: freetube_${{ steps.versionNumber.outputs.result }}_amd64.pacman
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}.pacman
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}.pacman
|
||||||
|
|
||||||
# - name: Upload Web Build
|
# - name: Upload Web Build
|
||||||
# uses: actions/upload-artifact@v2
|
# uses: actions/upload-artifact@v3
|
||||||
# if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
# if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.runtime, 'linux-x64')
|
||||||
# with:
|
# with:
|
||||||
# name: freetube_${{ steps.versionNumber.outputs.result }}_static_web
|
# name: freetube_${{ steps.versionNumber.outputs.result }}_static_web
|
||||||
# path: dist/web
|
# path: dist/web
|
||||||
|
|
||||||
- name: Upload Windows x64 .exe Artifact
|
- name: Upload Windows x64 .exe Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-setup-x64.exe
|
name: freetube-${{ steps.versionNumber.outputs.result }}-setup-x64.exe
|
||||||
path: build/freetube Setup ${{ steps.versionNumber.outputs.result }}.exe
|
path: build/freetube Setup ${{ steps.versionNumber.outputs.result }}.exe
|
||||||
|
|
||||||
- name: Upload Windows arm64 .exe Artifact
|
- name: Upload Windows arm64 .exe Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-setup-arm64.exe
|
name: freetube-${{ steps.versionNumber.outputs.result }}-setup-arm64.exe
|
||||||
path: build/freetube Setup ${{ steps.versionNumber.outputs.result }}.exe
|
path: build/freetube Setup ${{ steps.versionNumber.outputs.result }}.exe
|
||||||
|
|
||||||
- name: Upload Windows x64 .zip Artifact
|
- name: Upload Windows x64 .zip Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-win-x64-portable
|
name: freetube-${{ steps.versionNumber.outputs.result }}-win-x64-portable
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-win.zip
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-win.zip
|
||||||
|
|
||||||
- name: Upload Windows x64 .7z Artifact
|
- name: Upload Windows x64 .7z Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-win-x64-portable.7z
|
name: freetube-${{ steps.versionNumber.outputs.result }}-win-x64-portable.7z
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-win.7z
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-win.7z
|
||||||
|
|
||||||
- name: Upload Windows arm64 .zip Artifact
|
- name: Upload Windows arm64 .zip Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-win-arm64-portable
|
name: freetube-${{ steps.versionNumber.outputs.result }}-win-arm64-portable
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64-win.zip
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64-win.zip
|
||||||
|
|
||||||
- name: Upload Windows arm64 .7z Artifact
|
- name: Upload Windows arm64 .7z Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-win-arm64-portable.7z
|
name: freetube-${{ steps.versionNumber.outputs.result }}-win-arm64-portable.7z
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64-win.7z
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64-win.7z
|
||||||
|
|
||||||
- name: Upload Windows x64 Portable Artifact
|
- name: Upload Windows x64 Portable Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-portable-x64.exe
|
name: freetube-${{ steps.versionNumber.outputs.result }}-portable-x64.exe
|
||||||
path: build/freetube ${{ steps.versionNumber.outputs.result }}.exe
|
path: build/freetube ${{ steps.versionNumber.outputs.result }}.exe
|
||||||
|
|
||||||
- name: Upload Windows arm64 Portable Artifact
|
- name: Upload Windows arm64 Portable Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
if: startsWith(matrix.os, 'windows') && startsWith(matrix.runtime, 'win-arm64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-portable-arm64.exe
|
name: freetube-${{ steps.versionNumber.outputs.result }}-portable-arm64.exe
|
||||||
path: build/freetube ${{ steps.versionNumber.outputs.result }}.exe
|
path: build/freetube ${{ steps.versionNumber.outputs.result }}.exe
|
||||||
|
|
||||||
- name: Upload Mac x64 .dmg Artifact
|
- name: Upload Mac x64 .dmg Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-x64')
|
if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-mac-x64.dmg
|
name: freetube-${{ steps.versionNumber.outputs.result }}-mac-x64.dmg
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}.dmg
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}.dmg
|
||||||
|
|
||||||
# - name: Upload Mac arm64 .dmg Artifact
|
# - name: Upload Mac arm64 .dmg Artifact
|
||||||
# uses: actions/upload-artifact@v2
|
# uses: actions/upload-artifact@v3
|
||||||
# if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-arm64')
|
# if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-arm64')
|
||||||
# with:
|
# with:
|
||||||
# name: freetube-${{ steps.versionNumber.outputs.result }}-mac-arm64.dmg
|
# name: freetube-${{ steps.versionNumber.outputs.result }}-mac-arm64.dmg
|
||||||
# path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.dmg
|
# path: build/freetube-${{ steps.versionNumber.outputs.result }}-arm64.dmg
|
||||||
|
|
||||||
- name: Upload Mac x64 .zip Artifact
|
- name: Upload Mac x64 .zip Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-x64')
|
if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-mac-x64.zip
|
name: freetube-${{ steps.versionNumber.outputs.result }}-mac-x64.zip
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-mac.zip
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-mac.zip
|
||||||
|
|
||||||
- name: Upload Mac x64 .7z Artifact
|
- name: Upload Mac x64 .7z Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-x64')
|
if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-x64')
|
||||||
with:
|
with:
|
||||||
name: freetube-${{ steps.versionNumber.outputs.result }}-mac-x64.7z
|
name: freetube-${{ steps.versionNumber.outputs.result }}-mac-x64.7z
|
||||||
path: build/freetube-${{ steps.versionNumber.outputs.result }}-mac.7z
|
path: build/freetube-${{ steps.versionNumber.outputs.result }}-mac.7z
|
||||||
|
|
||||||
# - name: Upload Mac arm64 .zip Artifact
|
# - name: Upload Mac arm64 .zip Artifact
|
||||||
# uses: actions/upload-artifact@v2
|
# uses: actions/upload-artifact@v3
|
||||||
# if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-arm64')
|
# if: startsWith(matrix.os, 'macos') && startsWith(matrix.runtime, 'osx-arm64')
|
||||||
# with:
|
# with:
|
||||||
# name: freetube-${{ steps.versionNumber.outputs.result }}-mac-arm64.zip
|
# name: freetube-${{ steps.versionNumber.outputs.result }}-mac-arm64.zip
|
||||||
|
|
Loading…
Reference in New Issue