fix: bad watchtower url #47
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: Deploy to TEST environment | ||
on: | ||
pull_request: | ||
types: [opened, reopened, ready_for_review, synchronize] | ||
jobs: | ||
build-docker: | ||
name: Build and Push Docker Image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the updated source code | ||
uses: actions/checkout@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Login to container registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build image and push it to the container registry | ||
uses: docker/build-push-action@v4 | ||
with: | ||
build-args: NG_CONFIGURATION=test | ||
push: true | ||
context: . | ||
tags: "ghcr.io/bosancz/web:test" | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest # Run the job on an Ubuntu runner | ||
steps: | ||
- name: Call Watchtower to Update Docker Image | ||
run: | | ||
curl -X POST "${{ env.WATCHTOWER_URL }}" \ | ||
-H "Authorization: Bearer ${{ secrets.WATCHTOWER_TOKEN }}" \ | ||
-H "Content-Type: application/json" |