Skip to content

Commit

Permalink
fix: testing complete flow with enviroment variable and secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatist-ban committed Feb 27, 2024
1 parent f219d23 commit 236f665
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/template-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,13 @@ jobs:
echo "$VER"
echo "RELEASE_VERSION=$VER" >> $GITHUB_ENV
# - name: Validate conditions
# if: ${{ (vars.PUBLISH_ARTIFACT == true) && (env.RELEASE_VERSION != '') }}
# run: |
# echo "RELEASE_VERSION=${{ env.RELEASE_VERSION }}"
# echo "GITHUB_API_URL=${{ env.GH_API_URL }}"
# echo "PUBLISH_ARTIFACT=${{ vars.PUBLISH_ARTIFACT }}"
- name: Validate conditions
run: |
echo "RELEASE_VERSION=${{ env.RELEASE_VERSION }}"
echo "RELEASE_VERSION=${RELEASE_VERSION}"
echo "RELEASE_VERSION=$VER"
echo "GITHUB_API_URL=${{ env.GH_API_URL }}"
echo "PUBLISH_ARTIFACT=${{ vars.PUBLISH_ARTIFACT }}"
# - name: Restore dependencies cache
# uses: actions/cache@v4
Expand Down

0 comments on commit 236f665

Please sign in to comment.