Skip to content

Commit f1fd3e7

Browse files
authored
Merge pull request #5267 from sacherjj/move-upload-to-end
Move upload to end to help troubleshooting.
2 parents 4c7068d + 01e5a64 commit f1fd3e7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/publish-release-and-crates.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
- name: Build update package
3636
run: ./ci/build_update_package.sh
3737

38+
- name: Publish to crates.io
39+
env:
40+
CARGO_TOKEN: ${{ secrets.crates_io_token }}
41+
run: ./ci/publish_to_crates.io
42+
3843
# Add config.tar.gz, bin.tar.gz to release
3944
- name: Upload files to release
4045
uses: svenstaro/upload-release-action@v2
@@ -43,9 +48,4 @@ jobs:
4348
file: target/upgrade_build/*.tar.gz
4449
tag: ${{ github.ref }}
4550
overwrite: true
46-
file_glob: true
47-
48-
- name: Publish to crates.io
49-
env:
50-
CARGO_TOKEN: ${{ secrets.crates_io_token }}
51-
run: ./ci/publish_to_crates.io
51+
file_glob: true

0 commit comments

Comments
 (0)