Update dependencies #103
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: "[DOCKER] landing-page" | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "node/package-lock.json" | |
- "node/common/**" | |
- "node/landing-page/**" | |
- "dockerfiles/landing-page/**" | |
# Publish when a workflow has changed (this is needed to detect version updates) | |
- ".github/workflows/ci-landing-page.yml" | |
- ".github/workflows/reusable-docker.yml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "node/package-lock.json" | |
- "node/common/**" | |
- "node/landing-page/**" | |
- "dockerfiles/landing-page/**" | |
release: | |
types: | |
- published | |
jobs: | |
run: | |
uses: ./.github/workflows/reusable-docker.yml | |
with: | |
docker_org: theiacloud | |
docker_image: theia-cloud-landing-page | |
docker_file: dockerfiles/landing-page/Dockerfile | |
secrets: | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} |