Skip to content

Merge branch 'main' into ci/add-signing-test #76

Merge branch 'main' into ci/add-signing-test

Merge branch 'main' into ci/add-signing-test #76

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "YARN_CACHE_DIR_PATH=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Cache yarn dependencies
uses: actions/cache@v3
id: yarn-cache
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.YARN_CACHE_DIR_PATH }}
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install app dependecies
run: yarn --frozen-lockfile
- name: Test signing apk
uses: MatiasG19/android-sign@${{ github.head_ref }}

Check failure on line 41 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 41, Col: 15): Unrecognized named-value: 'github'. Located at position 1 within expression: github.head_ref
with:
releaseDirectory: ${{ github.workspace }}/__tests__/assets
signingKeyBase64: '${{ secrets.TEST_KEY }}'
output: ${{ github.workspace }}/dist
alias: ${{ secrets.TEST_KEY_ALIAS_KEY0 }}
keyStorePassword: ${{ secrets.TEST_KEY_STORE_PASSWORD_123456 }}
keyPassword: ${{ secrets.TEST_KEY_PASSWORD_123456 }}
env:
BUILD_TOOLS_VERSION: '33.0.2'