Skip to content

Commit

Permalink
Update dependencies (nushell 0.87) (#16)
Browse files Browse the repository at this point in the history
* Update to nushell 0.87, improve filesize using a different flag

* Add publish workflow
  • Loading branch information
domsleee committed Nov 15, 2023
1 parent 417c3f7 commit 6d8954a
Show file tree
Hide file tree
Showing 11 changed files with 798 additions and 804 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,22 @@ jobs:
*.tar.gz
*.zip
name: ${{ steps.get_version.outputs.value }}
tag_name: ""
tag_name: ""

publish:
runs-on: macos-latest
needs: release
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Rust toolchain and cache
uses: actions-rust-lang/[email protected]
with:
target: x86_64-apple-darwin
- name: Publish
if: ${{ github.ref == 'refs/heads/main' && startsWith(github.event.head_commit.message, 'chore(release)') }}
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Loading

0 comments on commit 6d8954a

Please sign in to comment.