Skip to content

Commit

Permalink
try some debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pcalouche committed Aug 2, 2024
1 parent 6c8ef96 commit 309baf1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@ jobs:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: actor
run: echo "github.actor is ${{ github.actor }} and github.token is $${{ github.token }}"
- name: one
run: echo "github.actor is ${{ github.actor }} and github.token is ${{ github.token }}"
- name: two
run: echo "GITHUB_ACTOR is ${GITHUB_ACTOR} and GITHUB_TOKEN is ${GITHUB_TOKEN}"
- name: three
run: echo "secrets actor is ${{ secrets.GITHUB_ACTOR }} and secrets token is ${{ secrets.GITHUB_TOKEN }}"
- name: Run Maven
run: mvn -B clean verify
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ github.token }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 309baf1

Please sign in to comment.