Merge pull request #85 from hamz4k/bump_default_build_tools_version #13
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: "Tag & Deploy Action" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test action | |
steps: | |
- uses: actions/checkout@v1 | |
name: Checkout code | |
- name: Run tests | |
run: npm run test | |
- uses: pCYSl5EDgo/[email protected] | |
name: Cat for GitHub Actions | |
id: get_key | |
with: | |
path: __tests__/test_key_b64.txt | |
- uses: ./ | |
name: Sign APK | |
with: | |
releaseDirectory: __tests__/apk | |
signingKeyBase64: ${{ steps.get_key.outputs.text }} | |
alias: test_key | |
keyStorePassword: android | |
keyPassword: android | |
- uses: ./ | |
name: Sign AAB | |
with: | |
releaseDirectory: __tests__/aab | |
signingKeyBase64: ${{ steps.get_key.outputs.text }} | |
alias: test_key | |
keyStorePassword: android | |
keyPassword: android | |
release: | |
needs: test | |
runs-on: ubuntu-latest | |
name: Update action | |
steps: | |
- uses: actions/checkout@v1 | |
name: Checkout code | |
- name: Update v1 Tag | |
uses: hole19/git-tag-action@master | |
env: | |
TAG: v1 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |