mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-04 02:26:11 +08:00
Bumps the actions-update group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `2` | `3` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `2` | `3` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `4` | `5` | | [docker/login-action](https://github.com/docker/login-action) | `2` | `3` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `docker/setup-qemu-action` from 2 to 3 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v2...v3) Updates `docker/setup-buildx-action` from 2 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2...v3) Updates `docker/build-push-action` from 4 to 5 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v5) Updates `docker/login-action` from 2 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-update - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-update - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-update - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-update - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-update ... Signed-off-by: dependabot[bot] <support@github.com>
135 lines
3.7 KiB
YAML
135 lines
3.7 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
build-frontend:
|
|
name: Build Frontend
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build Frontend
|
|
uses: ./.github/actions/build-frontend
|
|
|
|
- name: Upload dist
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: frontend
|
|
path: ./admin-frontend/build/
|
|
publish-pypi-github:
|
|
runs-on: ubuntu-latest
|
|
needs: build-frontend
|
|
permissions:
|
|
# write permission is required to create a github release
|
|
contents: write
|
|
# write permission is required for autolabeler
|
|
# otherwise, read permission is required at least
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Download frontend files
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: frontend
|
|
path: ./nonebot_bison/admin_page/dist
|
|
|
|
- name: Setup Python environment
|
|
uses: ./.github/actions/setup-python
|
|
|
|
- run: |
|
|
echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
|
|
- uses: release-drafter/release-drafter@v5
|
|
with:
|
|
name: Release ${{ env.TAG_NAME }}
|
|
tag: ${{ env.TAG_NAME }}
|
|
publish: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Publish PyPI and Github
|
|
run: |
|
|
poetry publish --build -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} || echo "Already pushed to pypi"
|
|
gh release upload --clobber ${{ env.TAG_NAME }} dist/*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish-docker:
|
|
runs-on: ubuntu-latest
|
|
needs: build-frontend
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Download frontend files
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: frontend
|
|
path: ./nonebot_bison/admin_page/dist
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- run: |
|
|
echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
|
|
- name: Login to DockerHub
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile_with_frontend
|
|
push: true
|
|
tags: |
|
|
felinae98/nonebot-bison:latest
|
|
felinae98/nonebot-bison:${{ env.TAG_NAME }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
|
|
- name: Build Sentry and push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile_with_frontend_sentry
|
|
push: true
|
|
tags: |
|
|
felinae98/nonebot-bison:${{ env.TAG_NAME }}-sentry
|
|
felinae98/nonebot-bison:sentry
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
deploy-web:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build Docs
|
|
uses: ./.github/actions/build-docs
|
|
|
|
- name: Deploy to Netlify
|
|
uses: nwtgck/actions-netlify@v2
|
|
with:
|
|
publish-dir: "./docs/.vuepress/dist"
|
|
production-deploy: true
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
deploy-message: "Deploy ${{ env.TAG_NAME }}"
|
|
enable-commit-comment: false
|
|
alias: ${{ env.TAG_NAME }}
|
|
env:
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|