Skip to content

Commit

Permalink
fix: add name and run
Browse files Browse the repository at this point in the history
  • Loading branch information
kosenda committed Feb 25, 2024
1 parent 8c4e49f commit 5250b1d
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,24 @@ runs:
using: composite
steps:
# マスクする
echo "::add-mask::${{ inputs.apiKey }}"

- name: Mask API Key
run: |
echo "::add-mask::${{ inputs.apiKey }}"
# ローカルプロパティの設定
- name: Set local.properties
env:
API_KEY: ${{ inputs.API_KEY }}
run: |
echo "apiKey=${{env.API_KEY}}" >> ./local.properties
# JDKセットアップ
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: gradle
# JDKセットアップ
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: gradle
# Gradleセットアップ
- name: Setup Gradle
Expand Down

0 comments on commit 5250b1d

Please sign in to comment.