|
|
|
@ -1,6 +1,7 @@
|
|
|
|
name: Build
|
|
|
|
name: Build
|
|
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
on:
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
branches: [ main ]
|
|
|
|
paths-ignore:
|
|
|
|
paths-ignore:
|
|
|
|
@ -44,11 +45,11 @@ jobs:
|
|
|
|
- name: Build
|
|
|
|
- name: Build
|
|
|
|
working-directory: ./AM2RLauncher
|
|
|
|
working-directory: ./AM2RLauncher
|
|
|
|
run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}"
|
|
|
|
run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}"
|
|
|
|
# Steps for uploading artifacts. We don't need them currently, so they're commented out.
|
|
|
|
# Steps for uploading artifacts.
|
|
|
|
#- name: Zip to Archive
|
|
|
|
- name: Zip to Archive
|
|
|
|
# run: 7z a -tzip ${{ matrix.os }}.zip ./${{ matrix.ARTIFACT }}
|
|
|
|
run: 7z a -tzip ${{ matrix.os }}.zip ./${{ matrix.ARTIFACT }}
|
|
|
|
#- name: Upload Artifacts
|
|
|
|
- name: Upload Artifacts
|
|
|
|
# uses: actions/upload-artifact@v1.0.0
|
|
|
|
uses: actions/upload-artifact@v1.0.0
|
|
|
|
# with:
|
|
|
|
with:
|
|
|
|
# name: ${{ matrix.os }}
|
|
|
|
name: ${{ matrix.os }}
|
|
|
|
# path: ${{ matrix.os }}.zip
|
|
|
|
path: ${{ matrix.os }}.zip
|
|
|
|
|