Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pandrabox authored Sep 1, 2024
1 parent 5d95fcd commit 2209acd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: test

on:
Expand All @@ -8,6 +7,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name : Set Environment Variables
- name: Set Environment Variables
run: |
echo "RepoName=${{GITHUB_REPOSITORY#${{GITHUB_REPOSITORY_OWNER}}/}}" >> $GITHUB_ENV
echo "RepoName=${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}" >> $GITHUB_ENV
echo ${{ env.RepoName }}
- name: Display RepoName
run: echo "RepoName is $RepoName"
env:
RepoName: ${{ env.RepoName }}

0 comments on commit 2209acd

Please sign in to comment.