๐ฉนchore(deps): bump werkzeug
from 3.0.3
to 3.0.6
in /subjects/mobile-dev/stock-market/resources/mock-stock-data-server
#1114
Workflow file for this run
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: ๐ณ On Branch - Build and Test Docker Image | |
on: | |
pull_request: | |
branches: ["master"] | |
types: [ labeled, opened, reopened, synchronize ] | |
jobs: | |
build-image: | |
name: ๐๏ธ Build Image - Branch | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, '๐ฆ build') | |
steps: | |
- name: ๐ง Checkout | |
uses: actions/checkout@v3 | |
- name: ๐ฆ Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: ๐ณ Login to docker.01-edu.org Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: docker.01-edu.org | |
username: ${{ secrets.USER_DOCKER_01EDU_ORG }} | |
password: ${{ secrets.SECRET_DOCKER_01EDU_ORG }} | |
- name: ๐๏ธ Build the ๐ป Sh Docker image | |
if: always() | |
run: | | |
docker build sh/tests/ --file sh/tests/Dockerfile --tag ghcr.io/01-edu/test-sh:PR${{ github.event.pull_request.number }} | |
docker push ghcr.io/01-edu/test-sh:PR${{ github.event.pull_request.number }} | |
- name: ๐๏ธ Build the ๐ JS Docker image | |
if: always() | |
run: | | |
docker build js/tests/ --file js/tests/Dockerfile --tag ghcr.io/01-edu/test-js:PR${{ github.event.pull_request.number }} | |
docker push ghcr.io/01-edu/test-js:PR${{ github.event.pull_request.number }} | |
- name: ๐๏ธ Build the ๐งฉ DOM Docker image | |
if: always() | |
run: | | |
docker build . --file dom/Dockerfile --tag ghcr.io/01-edu/test-dom:PR${{ github.event.pull_request.number }} | |
docker push ghcr.io/01-edu/test-dom:PR${{ github.event.pull_request.number }} |