ui: add published date to preview header #83
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 CAP server image | |
on: | |
push: | |
branches: [master, ant, faser] | |
paths-ignore: | |
- "ui/**" | |
jobs: | |
registry: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Trigger the Gitlab CI pipeline | |
run: bash ./scripts/ci/image_build.sh -b master -i app | |
env: | |
token: ${{ secrets.SERVER }} | |
trigger_uri: ${{ secrets.SERVER_TRIGGER_URI }} | |
- name: Trigger the Gitlab CI pipeline for E2E image update | |
run: bash ./scripts/ci/image_build.sh -b master -i app | |
env: | |
enable_e2e: 1 | |
token: ${{ secrets.SERVER }} | |
trigger_uri: ${{ secrets.SERVER_TRIGGER_URI }} |