don't create release but only list files to test the release workflow without polluting github releases
This commit is contained in:
18
.github/workflows/release.yml
vendored
18
.github/workflows/release.yml
vendored
@@ -102,17 +102,21 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
make ${{ matrix.target }} Configuration=Release Flavor=${{ matrix.flavor }}
|
make ${{ matrix.target }} Configuration=Release Flavor=${{ matrix.flavor }}
|
||||||
|
|
||||||
|
- name: List files
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
ls src/keepass2android-app/bin/**/*.*
|
||||||
|
|
||||||
- name: Archive production artifacts
|
- name: Archive production artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: signed APK (built on ${{ github.job }})
|
name: signed APK (built on ${{ github.job }})
|
||||||
path: |
|
path: |
|
||||||
src/keepass2android-app/bin/Release/net8.0-android/*/publish/*.apk src/keepass2android-app/bin/Release/net8.0-android/publish/*.apk
|
src/keepass2android-app/bin/Release/**/*.apk
|
||||||
|
|
||||||
- name: Upload APK to GitHub Release
|
#- name: Upload APK to GitHub Release
|
||||||
uses: softprops/action-gh-release@v2
|
# uses: softprops/action-gh-release@v2
|
||||||
if: github.ref_type == 'tag'
|
# if: github.ref_type == 'tag'
|
||||||
with:
|
# with:
|
||||||
files: |
|
# files: |
|
||||||
src/keepass2android-app/bin/Release/net8.0-android/*/publish/*.apk src/keepass2android-app/bin/Release/net8.0-android/publish/*.apk
|
# src/keepass2android-app/bin/Release/net8.0-android/*/publish/*.apk src/keepass2android-app/bin/Release/net8.0-android/publish/*.apk
|
||||||
|
|||||||
Reference in New Issue
Block a user