Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nygrenh committed Oct 5, 2023
1 parent 5a31773 commit 2541051
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,19 @@ jobs:
- name: Sign the macos-version build
if: ${{ matrix.os == 'macos-latest' }}
run: codesign --force -s - ./dist/main
- name: Make binary executable
if: ${{ matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' }}
run: chmod +x ./dist/main

- name: Rename built binary
run: poetry run mv ./dist/main ./dist/feedback-data-converter-${{ matrix.os }}
run: poetry run mv ./dist/main ./dist/feedback-data-converter-windows
if: ${{ matrix.os == 'windows-latest' }}
- name: Rename built binary
run: poetry run mv ./dist/main ./dist/feedback-data-converter-linux
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Rename built binary
run: poetry run mv ./dist/main ./dist/feedback-data-converter-macos
if: ${{ matrix.os == 'macos-latest' }}

- name: Store built binary
uses: actions/upload-artifact@v3
Expand All @@ -61,7 +71,7 @@ jobs:
name: converter-binary
path: ./dist/
- name: Set env for release
run: echo "DATE=$(date +'%Y-%m-%d-%H-%M')" >> $GITHUB_ENV
run: echo "DATE=$(date +'%Y-%m-%d/%H-%M')" >> $GITHUB_ENV
- uses: rickstaa/action-create-tag@v1
id: "tag_create"
with:
Expand Down

0 comments on commit 2541051

Please sign in to comment.