Skip to content

Commit

Permalink
improve workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowsink committed Sep 14, 2024
1 parent 620c44e commit 08e6143
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strip: true

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust toolchain
id: install_rust
Expand All @@ -44,7 +44,7 @@ jobs:
sudo apt-get update
sudo apt-get install build-essential clang-format libgtk-3-dev
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
Expand All @@ -92,8 +92,8 @@ jobs:
- name: Get some values needed for the release
id: release_values
run: |
echo "::set-output name=date::$(date '+%Y-%m-%d')"
echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
echo "date=$(date '+%Y-%m-%d')" >> $GITHUB_OUTPUT
echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Rename files
run: |
Expand Down

0 comments on commit 08e6143

Please sign in to comment.