Skip to content

Commit

Permalink
ci: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
SchneiderNicolas committed Sep 15, 2023
1 parent b928c1d commit c000987
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/push-to-epi-repo.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
- name: Debug token length
run: echo "Token has length of ${#TOKEN}"
env:
TOKEN: ${{ secrets.TOKEN }}
name: Push to Another Repository

on:
push:
branches:
- main

jobs:
push-to-destination:
if: github.repository == 'SchneiderNicolas/PWA'
runs-on: ubuntu-latest

steps:
- name: Checkout source repo
uses: actions/checkout@v2

- name: Debug token length
run: echo "Token has length of ${#TOKEN}"
env:
TOKEN: ${{ secrets.TOKEN }}

0 comments on commit c000987

Please sign in to comment.