Skip to content

Commit

Permalink
chore: Debugging skipped step
Browse files Browse the repository at this point in the history
  • Loading branch information
Rizhiy committed Dec 18, 2023
1 parent 8879b3a commit fa8c975
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,22 @@ on:

jobs:
publish:
if: startsWith(github.ref, 'refs/tags/v')
# if: startsWith(github.ref, 'refs/tags/v')
concurrency: publish
runs-on: ubuntu-latest
env:
FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
pip install --upgrade pip
pip install flit
- name: Publish with flit
# - name: Publish with flit
# env:
# FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }}
# run: |
# flit publish
- name: Debug
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: |
flit publish
echo $GITHUB_CONTEXT

0 comments on commit fa8c975

Please sign in to comment.