diff --git a/.github/workflows/testbundle.yml b/.github/workflows/testbundle.yml index 38db213..c8f7d2e 100644 --- a/.github/workflows/testbundle.yml +++ b/.github/workflows/testbundle.yml @@ -18,15 +18,15 @@ concurrency: cancel-in-progress: true jobs: - test: + Bundle: runs-on: ${{ matrix.os }} strategy: matrix: os: - ubuntu-latest - # - {os: macos-12} - # - {os: macos-latest} - # - {os: windows-latest} + - macos-12 + - macos-latest + - windows-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/testrelease.yml b/.github/workflows/testrelease.yml index 522713d..0671a11 100644 --- a/.github/workflows/testrelease.yml +++ b/.github/workflows/testrelease.yml @@ -1,9 +1,16 @@ -name: Release Arturo app - +############################################## +# App information +############################################## env: - app-name: testbundlex - app-entry: tests/testbundle.art - app-description: + app-name: testbundle + app-entry: tests/testbundle.art + app-notes: +############################################## + +# > if there is no serious reason, better not +# change anything below this line! ;-) + +name: Release Arturo app on: push: @@ -13,17 +20,17 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true - + jobs: Bundle: runs-on: ${{ matrix.os }} strategy: matrix: os: - - ubuntu-latest - # - macos-12 # amd64 - # - macos-latest # arm64 / M1 - # - windows-latest + - ubuntu-latest # Linux - amd64 + - macos-12 # macOS - amd64 + - macos-latest # macOS - arm64/M1 + - windows-latest # Windows - amd64 steps: - uses: actions/checkout@v4 - uses: ./ @@ -32,7 +39,7 @@ jobs: entry: ${{ env.app-entry }} target: ${{ env.app-name}} release: 'true' - + Release: runs-on: ubuntu-latest if: ${{ always() }} @@ -43,4 +50,4 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} name: ${{ env.app-name }} - description: ${{ env.app-description }} \ No newline at end of file + description: ${{ env.app-notes }} \ No newline at end of file