revanced-cli/.github/workflows/release.yml

47 lines
1.3 KiB
YAML
Raw Normal View History

2022-05-07 05:43:56 +02:00
name: Release
2023-01-13 14:41:38 +01:00
2022-05-07 05:43:56 +02:00
on:
workflow_dispatch:
2022-05-07 05:43:56 +02:00
push:
branches:
- main
- dev
2022-05-07 05:43:56 +02:00
pull_request:
branches:
- main
- dev
2023-01-13 14:41:38 +01:00
2022-05-07 05:43:56 +02:00
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2022-05-07 05:43:56 +02:00
with:
2023-01-13 22:31:11 +01:00
# Make sure the release step uses its own credentials:
# https://github.com/cycjimmy/semantic-release-action#private-packages
persist-credentials: false
2022-05-07 05:43:56 +02:00
fetch-depth: 0
2023-06-12 02:33:13 +02:00
- name: Cache
uses: actions/cache@v3
with:
path: |
${{ runner.home }}/.gradle/caches
${{ runner.home }}/.gradle/wrapper
.gradle
build
node_modules
key: ${{ runner.os }}-gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }}
2023-08-24 15:35:21 +02:00
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2023-08-24 15:35:21 +02:00
# Cleaning is necessary to avoid uploading two identical artifacts with different versions
run: ./gradlew clean --no-daemon
2022-05-07 05:43:56 +02:00
- name: Setup semantic-release
2023-02-13 22:35:05 +01:00
run: npm install
2023-01-18 00:44:39 +01:00
- name: Release
2022-05-07 05:43:56 +02:00
env:
2023-01-18 00:44:39 +01:00
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
2023-02-13 22:35:05 +01:00
run: npm exec semantic-release