Skip to content

Commit

Permalink
Update macos-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CookSleep authored Jul 18, 2024
1 parent fd67ae4 commit f3b8b6a
Showing 1 changed file with 7 additions and 31 deletions.
38 changes: 7 additions & 31 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build macOS App

on:
release:
types: [published, edited]
types: [created]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -36,39 +36,15 @@ jobs:
echo "Contents of current directory:"
ls -l
- name: Get release information
id: get_release
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
let releaseId, uploadUrl;
if (context.payload.release) {
releaseId = context.payload.release.id;
uploadUrl = context.payload.release.upload_url;
} else {
const response = await github.rest.repos.getLatestRelease({
owner: context.repo.owner,
repo: context.repo.repo,
});
releaseId = response.data.id;
uploadUrl = response.data.upload_url;
}
core.setOutput('upload_url', uploadUrl);
core.setOutput('release_id', releaseId);
- name: Debug
run: |
echo "Upload URL: ${{ steps.get_release.outputs.upload_url }}"
echo "Release ID: ${{ steps.get_release.outputs.release_id }}"
echo "GITHUB_REF: ${{ github.ref }}"
ls -l ./Project_Exporter-macOS.zip
- name: Upload to Release
uses: actions/upload-release-asset@v1
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./Project_Exporter-macOS.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./Project_Exporter-macOS.zip
asset_name: Project_Exporter-macOS.zip
asset_content_type: application/zip

0 comments on commit f3b8b6a

Please sign in to comment.