Skip to content

Commit

Permalink
This should work better
Browse files Browse the repository at this point in the history
  • Loading branch information
MotorTruck1221 committed Feb 18, 2025
1 parent 8fabb68 commit 69a505f
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,6 @@ env:
FORCE_COLOR: true

jobs:
test:
name: e
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: E
run: echo ${{ github.ref_name }}
windows-build:
name: Build Windows
runs-on: windows-latest
Expand Down Expand Up @@ -99,6 +91,15 @@ jobs:
needs: [windows-build, maclinux-build]

steps:
- name: Set ENV
uses: actions/checkout@v4
id: vars
outputs:
tag: ${{ steps.vars.outputs.tag }}
run: |
version=$(echo "${GITHUB_REF}" | sed -n 's/^refs\/tags\/v//p')
echo tag=${version} >> $GITHUB_OUTPUT
- name: Download artifacts for Linux & MacOS
uses: actions/download-artifact@v4
with:
Expand All @@ -118,6 +119,6 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: incognito-windows/*.exe
tag: ${{ github.ref }}
tag: ${{ steps.vars.outputs.tag }}
overwrite: true
file_glob: true

0 comments on commit 69a505f

Please sign in to comment.