Skip to content

Add Woodpecker CI config #4

Add Woodpecker CI config

Add Woodpecker CI config #4

Workflow file for this run

name: build
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-frontend:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./ui
push: github.event_name != 'pull_request'
pull: true
tags: |
ksetcomp/brucifer-karte-2022-frontend:latest
ksetcomp/brucifer-karte-2022-frontend:${{ github.sha }}
build-backend:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./ui
push: {{ github.event_name != 'pull_request' }}

Check failure on line 49 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/main.yaml (Line: 49, Col: 17): A mapping was not expected
pull: true
tags: |
ksetcomp/brucifer-karte-2022-backend:latest
ksetcomp/brucifer-karte-2022-backend:${{ github.sha }}
notify-watchtower:
runs-on: [self-hosted]
needs: [build-frontend, build-backend]
steps:
- name: Notify Watchtower
run: |
curl -sL -v \
--header 'Authorization: Bearer ${{ secrets.WATCHTOWER_TOKEN }}' \
"${{ vars.WATCHTOWER_URL }}/v1/update"