Skip to content

Commit

Permalink
chore: try to debug github
Browse files Browse the repository at this point in the history
  • Loading branch information
gchoqueux committed Jan 29, 2025
1 parent ad5159e commit 6c3f72e
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: integration

env:
ACTIONS_RUNNER_DEBUG: true

on:
push:
branches:
Expand Down Expand Up @@ -204,13 +201,23 @@ jobs:
git checkout next
git reset --hard master
npm run publish-next
git diff --name-only
git add . --all
git status
git diff --name-only
git push -f
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
ACTIONS_RUNNER_DEBUG: true

- name: git status
if: ${{ startsWith(github.event.head_commit.message, 'release v' ) }}
run: |
git status
env:
ACTIONS_RUNNER_DEBUG: true

- name: push next release
if: ${{ startsWith(github.event.head_commit.message, 'release v' ) }}
run: |
git push --force
env:
ACTIONS_RUNNER_DEBUG: true

- name: publish itowns@next npm package
if: ${{ !startsWith(github.event.head_commit.message, 'release v' ) }}
Expand Down

0 comments on commit 6c3f72e

Please sign in to comment.