Skip to content

Commit

Permalink
fix namme convention
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey.shulika committed Jan 3, 2024
1 parent 4f0d683 commit d35e3ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/license_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ on:
- README.md

env:
APP_NAME: ${{ github.repository }}
BRANCH: ${{ github.ref }}
APP_NAME: ${{ github.repository }}
BRANCH: ${{ github.ref }}
VERSION: ''

jobs:
check_licenses:
Expand All @@ -34,14 +35,13 @@ jobs:
id: run_script

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

- name: Uploading results
if: always()
uses: actions/upload-artifact@v3
with:
name: licenses_check-${{ APP_NAME }}-${{ VERSION }}
name: licenses_check-${{ env.APP_NAME }}-${{ env.VERSION }}
path: ./licenses_check/

- name: Results checking
Expand Down

0 comments on commit d35e3ba

Please sign in to comment.