mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-18 20:51:46 +03:00
68 lines
2.3 KiB
YAML
68 lines
2.3 KiB
YAML
name: Build Venus
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths:
|
|
- 'apps/venus/**'
|
|
- '.github/deployment'
|
|
- '.github/workflows/venus.yml'
|
|
pull_request:
|
|
branches: [master]
|
|
paths:
|
|
- 'apps/venus/**'
|
|
- '.github/workflows/venus.yml'
|
|
|
|
# Cancels all previous workflow runs for pull requests that have not completed.
|
|
# See https://docs.github.com/en/actions/using-jobs/using-concurrency
|
|
concurrency:
|
|
# The concurrency group contains the workflow name and the branch name for
|
|
# pull requests or the commit hash for any other events.
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
NAMESPACE: toeverything
|
|
VENUS_IMAGE_NAME: venus
|
|
IMAGE_TAG: canary-${{ github.sha }}
|
|
IMAGE_TAG_LATEST: nightly-latest
|
|
|
|
jobs:
|
|
ligo-virgo:
|
|
runs-on: self-hosted
|
|
environment: development
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Log in to the Container registry
|
|
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract metadata (tags, labels) for Docker (venus)
|
|
id: meta_venus
|
|
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/${{ env.VENUS_IMAGE_NAME }}
|
|
tags: |
|
|
${{ env.IMAGE_TAG }}
|
|
${{ env.IMAGE_TAG_LATEST }}
|
|
|
|
- name: Build and push Docker image (venus)
|
|
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
|
|
with:
|
|
context: .
|
|
file: ./.github/deployment/Dockerfile-venus
|
|
push: ${{ github.ref == 'refs/heads/master' && true || false }}
|
|
tags: ${{ steps.meta_venus.outputs.tags }}
|
|
labels: ${{ steps.meta_venus.outputs.labels }}
|
|
target: venus
|