Skip to content

Commit

Permalink
Publish crates without checks
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Nov 16, 2024
1 parent 5945f9a commit 51df3aa
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,30 @@ jobs:
working-directory: rwf-macros
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: bash ../scripts/check_publish.sh
run: |
cargo login ${CRATES_IO_TOKEN}
cargo publish || true
- name: Publish rwf-ruby
working-directory: rwf-ruby
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: bash ../scripts/check_publish.sh
run: |
cargo login ${CRATES_IO_TOKEN}
cargo publish || true
- name: Publish rwf
working-directory: rwf
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: bash ../scripts/check_publish.sh
run: |
cargo login ${CRATES_IO_TOKEN}
cargo publish || true
- name: Publish rwf-cli
working-directory: rwf-cli
env:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
run: bash ../scripts/check_publish.sh
run: |
cargo login ${CRATES_IO_TOKEN}
cargo publish || true

0 comments on commit 51df3aa

Please sign in to comment.