Build Angular Images #165
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: Build Angular Images | |
on: | |
workflow_dispatch: | |
inputs: | |
is_test: | |
description: "Test run" | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
env: | |
repo: angular | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
ALIYUN_USERNAME: ${{ secrets.ALIYUN_USERNAME }} | |
ALIYUN_PASSWORD: ${{ secrets.ALIYUN_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/login | |
- name: Run Tools | |
run: | | |
NODE_PATH=$(npm root --quiet -g) node ./tools/prepare.js repo-revision angular/angular | |
NODE_PATH=$(npm root --quiet -g) node ./tools/prepare.js repo-release-tag angular/angular | |
- if: ${{ !inputs.is_test }} | |
name: Build angular doc | |
uses: docker/[email protected] | |
with: | |
platforms: linux/amd64,linux/arm64 | |
context: ./angular/ | |
push: true | |
build-args: | | |
tagName=${{env.tag_name}} | |
DOCWORLD_SOURCE=${{ env.DOCWORLD_SOURCE }} | |
tags: | | |
docworld/angular:latest | |
docworld/angular:${{ env.tag_name }} | |
registry.cn-beijing.aliyuncs.com/docworld/angular:latest | |
registry.cn-beijing.aliyuncs.com/docworld/angular:${{ env.tag_name }} | |
- if: ${{ inputs.is_test }} | |
name: Test Build angular doc | |
uses: docker/[email protected] | |
with: | |
platforms: linux/amd64,linux/arm64 | |
context: ./angular/ | |
push: true | |
build-args: | | |
tagName=${{env.tag_name}} | |
DOCWORLD_SOURCE=${{ env.DOCWORLD_SOURCE }} | |
tags: | | |
registry.cn-beijing.aliyuncs.com/ikrong/docworld:angular | |
UpdateDockerDescription: | |
if: ${{ !inputs.is_test }} | |
needs: [Build] | |
uses: ikrong/documents/.github/workflows/_updateDocker.yml@main | |
with: | |
repoName: angular | |
secrets: inherit |