Overleaf Development Image(Aliyun) #1346
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: Overleaf Development Image(Aliyun) | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 */3 * * *' | |
env: | |
GHCR_REGISTRY: registry.cn-hangzhou.aliyuncs.com | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
image-name: | |
[ | |
web, | |
webpack, | |
real-time, | |
project-history, | |
notifications, | |
history-v1, | |
filestore, | |
document-updater, | |
docstore, | |
contacts, | |
chat, | |
clsi, | |
spelling, | |
references | |
] | |
steps: | |
- name: "Checkout Internal Overleaf Action" | |
uses: actions/checkout@main | |
with: | |
repository: ayaka-notes/overleaf-internal | |
ref: dev | |
token: ${{secrets.ORGTOKEN}} | |
- name: "Login to GitHub Container Registry" | |
uses: docker/[email protected] | |
with: | |
registry: ${{env.GHCR_REGISTRY}} | |
username: "musicminion" | |
password: ${{secrets.ALIYUN_DOCKER_TOKEN}} | |
- name: "Clone Overleaf And Build" | |
run: | | |
cd ./develop-pro/ | |
make aliyun | |
bin/build ${{matrix.image-name}} | |
bin/push ${{matrix.image-name}} | |
clean-image: | |
runs-on: ubuntu-latest | |
needs: build-image | |
steps: | |
- name: Delete 'untaged' containers | |
uses: snok/container-retention-policy@v2 | |
with: | |
image-names: overleaf/dev/* | |
cut-off: 1 min ago UTC | |
account-type: org | |
org-name: ayaka-notes | |
untagged-only: true | |
token: ${{ secrets.ORGTOKEN }} |