Skip to content

Commit

Permalink
Merge branch 'development' into feature/rune-summon
Browse files Browse the repository at this point in the history
  • Loading branch information
ipdae authored Dec 4, 2023
2 parents aa7dff0 + 5b0c391 commit 4e6eb51
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/lib9c_plugin_build_and_push_s3.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: lib9c plugin build and push s3

on:
workflow_dispatch:

jobs:
s3-lib9c-plugin:
strategy:
matrix:
runtime: [ "osx-arm64", "linux-arm64", "linux-x64", "win-x64" ]
name: Publish Lib9c.Plugin (${{ 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.Plugin
run: dotnet publish ./.Lib9c.Plugin/Lib9c.Plugin.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.Plugin/${{ 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 4e6eb51

Please sign in to comment.