Files
sign-android-release/.github/workflows/release.yml
T
Drew Heavner 67dceb4e04 Cleaned and refreshed node modules with npm
Added a check for a debug flag so that we can checkout and run actions during release
2020-11-15 14:04:10 -05:00

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 }}