Skip to content

Commit

Permalink
change name
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey.shulika committed Jan 3, 2024
1 parent d35e3ba commit 597a02b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/license_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
env:
APP_NAME: ${{ github.repository }}
BRANCH: ${{ github.ref }}
VERSION: ''

jobs:
check_licenses:
Expand All @@ -35,7 +34,9 @@ jobs:
id: run_script

- name: Get version
run: echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,' >> $VERSION
run:
VERSION=$( echo "${{ github.ref }}" | awk -F '/' '{print $NF}' )
APP_NAME=$( echo "${{ github.repository }}" | awk -F '/' '{print $NF}' )

- name: Uploading results
if: always()
Expand Down

0 comments on commit 597a02b

Please sign in to comment.