Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: NikitaSkrynnik <[email protected]>
  • Loading branch information
NikitaSkrynnik committed Jun 2, 2024
1 parent 5a7628c commit a2daa7f
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/check-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit a2daa7f

Please sign in to comment.