mirror of
https://github.com/r0adkll/sign-android-release
synced 2026-09-25 14:18:37 +00:00
Added a check for a debug flag so that we can checkout and run actions during release
26 lines
455 B
YAML
26 lines
455 B
YAML
name: "Tag & Deploy Action"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Run Tests
|
|
run: npm run test
|
|
|
|
- name: Verify Checkout
|
|
uses: ./
|
|
env:
|
|
DEBUG_ACTION: true
|
|
|
|
- name: Update v1 Tag
|
|
uses: hole19/git-tag-action@master
|
|
env:
|
|
TAG: v1
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |