Merge pull request #36 from dgl/dgl/userns-otherfs #108
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: Compile Kinvolk Seccomp Agent | |
on: | |
push: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Build container and publish to Registry | |
id: publish-registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
# name: quay.io/kinvolk/seccompagent | |
name: ${{ secrets.CONTAINER_REPO }} | |
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }} | |
password: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }} | |
registry: quay.io | |
workdir: . | |
dockerfile: Dockerfile | |
snapshot: true | |
cache: ${{ github.event_name != 'schedule' }} |