Skip to content

Commit

Permalink
v1.3.69
Browse files Browse the repository at this point in the history
  • Loading branch information
oz123 committed Jul 24, 2024
1 parent 9c37f7d commit 3cf96da
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ jobs:
with:
name: mh-static-linux-x86_64
path: mh-linux-x86_64
- name: upload artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: mh_${VERSION}-1_amd64.deb
asset_name: mh_${VERSION}-1_amd64.deb
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-deb:
runs-on: ubuntu-latest
steps:
Expand All @@ -52,15 +43,6 @@ jobs:
with:
path: mh_${VERSION}-1_amd64.deb
name: mh_${VERSION}-1_amd64.deb
- name: upload artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: mh_${VERSION}-1_amd64.deb
asset_name: mh_${VERSION}-1_amd64.deb
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-osx-amd64:
runs-on: macos-latest
steps:
Expand Down Expand Up @@ -95,15 +77,6 @@ jobs:
with:
name: mh-darwin-x86_64-apple-macos11
path: mh-darwin-x86_64-apple-macos11
- name: upload artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_name: mh-darwin-x86_64-apple-macos11
asset_path: mh-darwin-x86_64-apple-macos11
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-osx-arm:
runs-on: macos-latest
steps:
Expand Down Expand Up @@ -132,15 +105,6 @@ jobs:
with:
name: mh-darwin-arm64
path: mh-darwin-arm64
- name: upload artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: mh-darwin-arm64
asset_name: mh-darwin-arm64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
create-release:
runs-on: ubuntu-latest
needs: [build, build-deb, build-osx-arm, build-osx-amd64]
Expand All @@ -156,3 +120,39 @@ jobs:
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload mac osx arm build artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: mh-darwin-arm64
asset_name: mh-darwin-arm64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload mac osx x86_64 artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_name: mh-darwin-x86_64-apple-macos11
asset_path: mh-darwin-x86_64-apple-macos11
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload deb artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: mh_${VERSION}-1_amd64.deb
asset_name: mh_${VERSION}-1_amd64.deb
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload linux static binary artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: mh_${VERSION}-1_amd64.deb
asset_name: mh_${VERSION}-1_amd64.deb
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3cf96da

Please sign in to comment.