add no quotas status #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to Luogu | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
environment: publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: pack plugin | |
id: pack | |
shell: bash | |
run: | | |
tar zcvf plugin.tgz * --transform 's,^,luogu/,' | |
ver=$(jq -r .version package.json) | |
echo "Current version: $ver" | |
echo "version=$ver" >> $GITHUB_OUTPUT | |
- name: publish | |
uses: tvrcgo/upload-to-oss@d805009d52698055a35b19c14d190a02d04a4f43 | |
with: | |
key-id: ${{ secrets.ALIOSS_AK }} | |
key-secret: ${{ secrets.ALIOSS_SK }} | |
region: oss-cn-hangzhou | |
bucket: luogu | |
assets: | | |
plugin.tgz:/lgapi/hydro/hydroplugin-luogu-latest.tgz | |
plugin.tgz:/lgapi/hydro/hydroplugin-luogu-${{ steps.pack.outputs.version }}.tgz |