Skip to content

Commit

Permalink
DONT MERGE
Browse files Browse the repository at this point in the history
  • Loading branch information
moreal committed Aug 8, 2023
1 parent 700c770 commit 279166d
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: publish

on:
push:
branches: main
branches:
- main
- 0.4.0-publish-dont-merge

jobs:
nuget:
Expand Down Expand Up @@ -33,3 +35,27 @@ jobs:
fi
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
s3-lib9c-stateservice:
strategy:
matrix:
runtime: ["osx-arm64", "linux-arm64", "linux-x64", "win-x64"]
name: Publish Lib9c.StateService (${{ matrix.runtime }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.400
- name: Publish Lib9c.StateService
run: dotnet publish ./.Lib9c.StateService/Lib9c.StateService.csproj -o out -r ${{ matrix.runtime }}
- name: Compress the build result
run: zip -r ../${{ matrix.runtime }}.zip .
working-directory: ./out
- name: Upload S3
run: aws s3 cp ${{ matrix.runtime }}.zip s3://9c-dx/lib9c-stateservices/${{ github.sha }}/
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: "us-east-2"

0 comments on commit 279166d

Please sign in to comment.