chore: update authors #1
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: Test build the base container image | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
paths: | |
- Payload_Type/thanatos/** | |
pull_request: | |
branches: | |
- main | |
- dev | |
paths: | |
- Payload_Type/thanatos/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build the base container image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build the container image | |
uses: docker/build-push-action@v5 | |
with: | |
context: Payload_Type/thanatos | |
file: Payload_Type/thanatos/.docker/Dockerfile | |
tags: testing | |
push: false |