fix: next try fixing build process

This commit is contained in:
Patryk Hegenberg 2024-11-25 20:33:16 +01:00
parent 482fb2f3c2
commit 5df60e393d

View file

@ -6,28 +6,29 @@ on:
- '*'
env:
# Necessary for most environments as build failure can occur due to OOM issues
NODE_OPTIONS: "--max-old-space-size=4096"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write # Wichtig für Release-Uploads
jobs:
build:
strategy:
# Failure in one platform build won't impact the others
fail-fast: false
matrix:
build:
- name: 'grades-management-app'
platform: 'linux/amd64'
platform: 'linux/amd64'
os: 'ubuntu-latest'
- name: 'grades-management-app'
platform: 'windows/amd64'
platform: 'windows/amd64'
os: 'windows-latest'
- name: 'grades-management-app'
platform: 'darwin/universal'
platform: 'darwin/universal'
os: 'macos-latest'
runs-on: ${{ matrix.build.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
@ -42,19 +43,13 @@ jobs:
build-platform: ${{ matrix.build.platform }}
package: true
go-version: '1.23'
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: grades-management-app-${{ matrix.os }}
github_token: ${{ github.token }} # Explizit Token übergeben
- name: Create Release
- name: Upload artifacts
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
files: |
build/bin/*
env:
GITHUB_TOKEN: ${{ github.token }}