mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 04:49:33 -07:00
oooo
This commit is contained in:
parent
f56159ab64
commit
2ae4eb646d
1 changed files with 36 additions and 3 deletions
39
.github/workflows/build.yml
vendored
39
.github/workflows/build.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
||||||
- name: Publish UI Artifacts
|
- name: Publish UI Artifacts
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: angular_dist
|
||||||
path: |
|
path: |
|
||||||
./src/Ombi/ClientApp/dist/
|
./src/Ombi/ClientApp/dist/
|
||||||
|
|
||||||
|
@ -48,22 +48,55 @@ jobs:
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# needs: [build]
|
needs: [build]
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: win10-x64
|
- os: win10-x64
|
||||||
format: zip
|
format: zip
|
||||||
compression: zip
|
compression: zip
|
||||||
|
- os: win10-x86
|
||||||
|
format: zip
|
||||||
|
compression: zip
|
||||||
- os: linux-x64
|
- os: linux-x64
|
||||||
format: tar.gz
|
format: tar.gz
|
||||||
compression: tar
|
compression: tar
|
||||||
|
- os: linux-arm
|
||||||
|
format: tar.gz
|
||||||
|
compression: tar
|
||||||
|
- os: linux-arm64
|
||||||
|
compression: tar
|
||||||
|
format: tar.gz
|
||||||
|
- os: osx-x64
|
||||||
|
compression: tar
|
||||||
|
format: tar.gz
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Publish Backend ${{ matrix.os }}
|
- name: Publish Backend ${{ matrix.os }}
|
||||||
run: |
|
run: |
|
||||||
ls
|
|
||||||
cd src/Ombi
|
cd src/Ombi
|
||||||
dotnet publish -c Release -r ${{ matrix.os }} -o "${{ matrix.os }}" --self-contained true -p:PublishSingleFile=true
|
dotnet publish -c Release -r ${{ matrix.os }} -o "${{ matrix.os }}" --self-contained true -p:PublishSingleFile=true
|
||||||
|
|
||||||
|
- name: Download Angular
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: angular_dist
|
||||||
|
|
||||||
|
- name: Copy Dist to Artifacts
|
||||||
|
run: |
|
||||||
|
copy dist ${{ matrix.os }}/ClientApp/dist
|
||||||
|
|
||||||
|
- name: Archive Release
|
||||||
|
uses: thedoctor0/zip-release@master
|
||||||
|
with:
|
||||||
|
type: '${{ matrix.compression }}'
|
||||||
|
filename: '${{ matrix.os }}.${{ matrix.compression }}'
|
||||||
|
directory: '${{ matrix.os }}'
|
||||||
|
# - name: Publish UI Artifacts
|
||||||
|
# uses: actions/upload-artifact@v2
|
||||||
|
# with:
|
||||||
|
# name: dist
|
||||||
|
# path: |
|
||||||
|
# ${{ matrix.os }}
|
||||||
|
|
||||||
#https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#using-environment-variables-in-a-matrix
|
#https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#using-environment-variables-in-a-matrix
|
Loading…
Add table
Add a link
Reference in a new issue