Skip to content

Commit

Permalink
update publish-action (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisDenton authored Sep 25, 2024
1 parent bfecb91 commit b367e95
Showing 1 changed file with 5 additions and 17 deletions.
22 changes: 5 additions & 17 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,12 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@master

# Use caching to speed up your build
- name: Cache publish-action bin
id: cache-publish-action
uses: actions/cache@v3
env:
cache-name: cache-publish-action
with:
path: ~/.cargo
key: ${{ runner.os }}-build-${{ env.cache-name }}-v0.1.13

# install publish-action by cargo in github action
- name: Install publish-action
if: steps.cache-publish-action.outputs.cache-hit != 'true'
run: cargo install publish-action --version=0.1.13

- name: Publish to cargo
run: publish-action
# get git tags info
fetch-depth: 0

- name: Run publish-action
uses: tu6ge/publish-action@0.4.5
env:
# This can help you tagging the github repository
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit b367e95

Please sign in to comment.