Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pandrabox committed Sep 1, 2024
2 parents 86422bc + 2209acd commit 046865c
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: Hello World
- name: Set Environment Variables
run: |
echo "${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}"
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 046865c

Please sign in to comment.