Skip to content

Commit

Permalink
main mode
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejewsky committed Jan 2, 2024
1 parent d2f6929 commit a49dbb5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/prepare-tests-variables/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
BACKUP_ID: ${{ steps.backup.outputs.BACKUP_ID }}
BACKUP_VER: ${{ steps.backup.outputs.BACKUP_VER }}
BACKUP_NAME: ${{ steps.backup.outputs.BACKUP_NAME }}
BACKUP_NAMESPACE: ${{ steps.backup.outputs.BACKUP_NAMESPACE }}
BACKUP_NAMESPACE: ${{ steps.api.outputs.BACKUP_NAMESPACE }}
run: |
echo "::notice title=BASE_URL::${BASE_URL}"
echo "::notice title=API_URL::${API_URL}"
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/run-test-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,14 @@ jobs:
id: set_variables_mode
shell: bash
run: |
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
echo "MODE=main" >> $GITHUB_OUTPUT
else
echo "MODE=release" >> $GITHUB_OUTPUT
fi
echo "MODE=main" >> $GITHUB_OUTPUT
# run: |
# if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
# echo "MODE=main" >> $GITHUB_OUTPUT
# else
# echo "MODE=release" >> $GITHUB_OUTPUT
# fi

- name: Generate variables
id: cloud_variables
Expand Down

0 comments on commit a49dbb5

Please sign in to comment.