forked from networkservicemesh/deployments-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: NikitaSkrynnik <[email protected]>
- Loading branch information
1 parent
5a7628c
commit a2daa7f
Showing
1 changed file
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,20 +48,16 @@ jobs: | |
steps: | ||
- name: Set envs | ||
run: | | ||
branch=${{ inputs.branch }} | ||
[[ -z "$branch" ]] && branch=${{ github.event.ref }} | ||
echo $branch | ||
branch=${{ inputs.branch }} && [[ -z "$branch" ]] && branch=${{ github.event.ref }} | ||
echo "tag=$(echo $branch | awk -F '/' '{print $NF}')" >> $GITHUB_ENV | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "NSMBot" | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: release/${{ env.tag }} | ||
|
||
- name: Replace image versions in apps folder | ||
run: | | ||
|