Update workflow to use older artifact upload and download actions for Gitea support
This commit is contained in:
@@ -48,7 +48,7 @@ jobs:
|
||||
run: poetry run flet build linux --no-rich-output
|
||||
|
||||
- name: Upload Linux artifact
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
|
||||
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5
|
||||
with:
|
||||
name: ren-browser-linux
|
||||
path: build/linux
|
||||
@@ -81,7 +81,7 @@ jobs:
|
||||
PYTHONUTF8: 1
|
||||
|
||||
- name: Upload Windows artifact
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
|
||||
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5
|
||||
with:
|
||||
name: ren-browser-windows
|
||||
path: build/windows
|
||||
@@ -123,7 +123,7 @@ jobs:
|
||||
run: poetry run flet build apk --no-rich-output --exclude watchdog
|
||||
|
||||
- name: Upload APK artifact
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
|
||||
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5
|
||||
with:
|
||||
name: ren-browser-apk
|
||||
path: build/apk
|
||||
@@ -140,21 +140,21 @@ jobs:
|
||||
|
||||
- name: Download Linux artifact
|
||||
if: needs.build-linux.result == 'success'
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
|
||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
|
||||
with:
|
||||
name: ren-browser-linux
|
||||
path: ./artifacts/linux
|
||||
|
||||
- name: Download Windows artifact
|
||||
if: needs.build-windows.result == 'success'
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
|
||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
|
||||
with:
|
||||
name: ren-browser-windows
|
||||
path: ./artifacts/windows
|
||||
|
||||
- name: Download APK artifact
|
||||
if: needs.build-android.result == 'success'
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
|
||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
|
||||
with:
|
||||
name: ren-browser-apk
|
||||
path: ./artifacts/apk
|
||||
|
||||
Reference in New Issue
Block a user