Skip to content

Commit

Permalink
fix(ci): return old style
Browse files Browse the repository at this point in the history
  • Loading branch information
KotRikD committed Mar 1, 2024
1 parent 511cbce commit 9b32507
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@ jobs:
shell: bash
run: echo "SHORT_PR_SHA=$(git rev-parse HEAD | cut -c 1-7)" >> "$GITHUB_OUTPUT"

- name: 📐 - Define variables (2)
id: set-artifact-name
shell: bash
run: echo "ARTIFACT_NAME='tosu-${{ matrix.os }}-${{ steps.set-pr-sha.outputs.SHORT_PR_SHA || github.ref_name }}'"

- name: 🛠️ - Install Node
uses: actions/setup-node@v3
with: { node-version: 18 }
Expand All @@ -64,7 +59,7 @@ jobs:
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
with: {
name: "${{ steps.set-artifact-name.outputs.ARTIFACT_NAME }}",
name: "tosu-${{ matrix.os }}-${{ steps.set-pr-sha.outputs.SHORT_PR_SHA || github.ref_name }}",
path: packages/tosu/dist/tosu.exe
}

Expand Down

0 comments on commit 9b32507

Please sign in to comment.