Skip to content

workflow에서 secret 관련 부분 변경 #3

workflow에서 secret 관련 부분 변경

workflow에서 secret 관련 부분 변경 #3

Workflow file for this run

name: Android CI
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Copy secret
env:

Check failure on line 30 in .github/workflows/android.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/android.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
OCCUPY_SECRET: ${{ secrets.CONST }}
OCCUPY_SECRET_DIR: ./app/src/main/java/com/juniori/puzzle/app/util/Const.kt
OCCUPY_SECRET_DIR_FILE_NAME: secret.yml
run: echo $OCCUPY_SECRET | base64 --decode > $OCCUPY_SECRET_DIR/$OCCUPY_SECRET_DIR_FILE_NAME
# Build Debug App
- name: Build with Gradle
run: ./gradlew assembleDebug
# Run unit test
- name: Run unit test
run: ./gradlew testdebugUnitTest