Skip to content

Commit

Permalink
ci: REVERT THIS. Test github release on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
edusperoni committed Oct 15, 2024
1 parent 40a8697 commit c23557f
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,36 @@ jobs:
# this is needed on API 30+
#target: google_apis
arch: ${{env.ANDROID_ABI}}
script: ./gradlew runtestsAndVerifyResults --stacktrace
script: ./gradlew runtestsAndVerifyResults --stacktrace
github-release-test:
runs-on: ubuntu-latest
needs:
- build
- test
env:
NPM_VERSION: ${{needs.build.outputs.npm_version}}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup
run: npm install
- uses: actions/download-artifact@v3
with:
name: npm-package
path: dist
- uses: actions/download-artifact@v3
with:
name: debug-symbols
path: dist/debug-symbols
- name: Zip debug symbols
working-directory: dist/debug-symbols
run: zip -r debug-symbols.zip .
- name: Partial Changelog
run: npx conventional-changelog -p angular -r2 > body.md
# lists all the files in the dist folder
- name: List release files
run: ls dist/nativescript-android-*.tgz ; ls dist/debug-symbols/debug-symbols.zip

0 comments on commit c23557f

Please sign in to comment.