From b4174f448e2f3d6b074b89838358f914dd5001fb Mon Sep 17 00:00:00 2001 From: dylan-kwon Date: Thu, 7 Nov 2024 08:05:42 +0900 Subject: [PATCH] Update deploy.yml 1. Checkout First --- .github/workflows/deploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d6a9f54..619aac1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,14 +9,16 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Env run: | VERSION_NAME=$(grep "versionName" ./version.properties | cut -d "=" -f 2) + echo "VERSION_NAME=$VERSION_NAME" >> $GITHUB_ENV + echo '${{ secrets.PUBLISH_PROPERTIES }}' | openssl base64 -d -out ./publish.properties - - name: Checkout - uses: actions/checkout@v4 - - name: Set up JDK 17 uses: actions/setup-java@v4 with: