Skip to content

Commit

Permalink
Merge pull request #10 from Zingo21/automations
Browse files Browse the repository at this point in the history
Update flutter-desktop-deployment.yml
  • Loading branch information
Zingo21 authored Aug 24, 2023
2 parents aefaec0 + 818cebb commit 095fb9d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/flutter-desktop-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: github_client-${{github.ref_name}}-linux.zip
filename: github_client-${{github.head_ref}}-linux.zip
directory: build/linux/x64/release/bundle
- name: Release to github
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{github.head_ref}}
files: build/linux/x64/release/bundle/github_client-${{github.ref_name}}-linux.zip
files: build/linux/x64/release/bundle/github_client-${{github.head_ref}}-linux.zip

windows:
name: Windows build and release
Expand All @@ -75,15 +75,15 @@ jobs:
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: github_client-${{github.ref_name}}-windows.zip
filename: github_client-${{github.head_ref}}-windows.zip
directory: build/windows/runner/Release
- name: Release to github
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{github.head_ref}}
files: build/windows/runner/Release/github_client-${{github.ref_name}}-windows.zip
files: build/windows/runner/Release/github_client-${{github.head_ref}}-windows.zip

macos:
name: MacOS build and release
Expand All @@ -106,12 +106,12 @@ jobs:
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: github_client-${{github.ref_name}}-macos.zip
filename: github_client-${{github.head_ref}}-macos.zip
directory: build/macos/Build/Products/Release
- name: Release to github
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{github.head_ref}}
files: build/macos/Build/Products/Release/github_client-${{github.ref_name}}-macos.zip
files: build/macos/Build/Products/Release/github_client-${{github.head_ref}}-macos.zip

0 comments on commit 095fb9d

Please sign in to comment.