Skip to content

Commit

Permalink
Disable automatic test publishing (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddn0 authored Jun 6, 2024
1 parent 78d3645 commit 72574b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:
types:
- published
workflow_dispatch:
# XXX(ddn): For testing
pull_request:

jobs:
Expand Down Expand Up @@ -48,7 +47,10 @@ jobs:
id-token: write
needs:
- build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
# Would be nice to do a test publish on every main change but this requires
# dynamic package versions; instead, expect this to be run manually.
#if: github.event_name == 'push' && github.ref == 'refs/heads/main'
if: github.event.action == 'workflow_dispatch'
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 72574b2

Please sign in to comment.