chore: Merge branch dev
to main
#1143
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
name: Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# Make sure the release step uses its own credentials: | |
# https://github.com/cycjimmy/semantic-release-action#private-packages | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Cache Gradle | |
uses: burrunan/gradle-cache-action@v1 | |
- name: Build with Gradle | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./gradlew generatePatchesFiles clean | |
# - name: Upload patches jar | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: patches | |
# path: build/libs/*.jar | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} | |
run: npm exec semantic-release | |
- name: Run apk build | |
run: | | |
curl -X POST https://api.github.com/repos/crimera/piko-builds/dispatches \ | |
-H 'Accept: application/vnd.github+json' \ | |
-H "Authorization: Bearer ${{secrets.ACCESS_TOKEN}}" \ | |
-d '{"event_type": "build"}' |