Add NAS deployment task and update volume mounts #16
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-publisher | |
on: | |
push: | |
branches: | |
tags: | |
paths: | |
- '.github/workflows/ci-build-publisher.yml' | |
- 'publisher/**' | |
pull_request: | |
paths: | |
- '.github/workflows/ci-build-publisher.yml' | |
- 'publisher/**' | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
- name: build publisher image | |
run: docker build -t radio-t/publisher . | |
working-directory: publisher |