Skip to content

Commit

Permalink
Implemented an expert's suggestions
Browse files Browse the repository at this point in the history
Signed-off-by: xplshn <[email protected]>
  • Loading branch information
xplshn committed Oct 23, 2024
1 parent e47a40a commit 1d9868f
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
build:
name: Build and Release Packages
runs-on: ubuntu-latest
permissions: write-all

steps:
- name: Checkout repository
Expand All @@ -24,7 +25,7 @@ jobs:
id: build_step
run: |
# Set output directory
OUT_DIR="$HOME/out"
OUT_DIR="/tmp/APPBUNDLES"
mkdir -p "$OUT_DIR"
cd ${{ github.workspace }}
Expand Down Expand Up @@ -120,12 +121,16 @@ jobs:
# Create GitHub Release
- name: Create Release
uses: marvinpinto/action-automatic-releases@latest
uses: softprops/action-[email protected]
with:
title: "Weekly Release - Run ${{ github.run_id }}"
automatic_release_tag: weekly-release-${{ github.run_id }}
name: "Weekly Release - Run ${{ github.run_id }}"
tag_name: "weekly-release-${{ github.run_id }}-${{ github.sha }}"
prerelease: false
draft: false
generate_release_notes: false
make_latest: true
files: |
${{ env.OUT_DIR }}/*.AppBundle
repo_token: ${{ secrets.GITHUB_TOKEN }}
/tmp/APPBUNDLES/*.AppBundle
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1d9868f

Please sign in to comment.