Skip to content

Commit

Permalink
Replace prerelease with draft
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejressel committed Nov 29, 2024
1 parent 82fc0a3 commit 9719a19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
branches: [ "main", "draft-releases" ]

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
deploy:
runs-on: ubuntu-24.04
needs: build
if: success() && github.ref == 'refs/heads/main'
if: success() && github.ref == 'refs/heads/draft-releases'
env:
RUST_BACKTRACE: "full"
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
name: ${{ env.VERSION }}
tag_name: ${{ env.GITHUB_REF_NAME }}
fail_on_unmatched_files: true
prerelease: true
draft: true
body: ""
files: |
target/wasm32-wasip1/release/*-release.wasm
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
name: ${{ env.VERSION }}
tag_name: ${{ env.GITHUB_REF_NAME }}
fail_on_unmatched_files: true
prerelease: true
draft: true
body: ""
files: |
pulumi-language-wasm/*.tar.gz
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
name: ${{ env.VERSION }}
tag_name: ${{ env.GITHUB_REF_NAME }}
fail_on_unmatched_files: true
prerelease: true
draft: true
body: ""
files: |
./target/${{ matrix.rust-target }}/debug/pulumi_wasm_runner-${{ matrix.rust-target }}-debug
Expand Down

0 comments on commit 9719a19

Please sign in to comment.