Skip to content

fix: allows empty file to bypass filetype check #20

fix: allows empty file to bypass filetype check

fix: allows empty file to bypass filetype check #20

Workflow file for this run

name: Build container
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/aragon/ipfs-api-proxy
flavor: |
latest=${{ github.ref == 'refs/heads/main' }}
tags: |
type=ref,event=branch
type=sha,event=branch,prefix={{branch}}-,format=short
type=semver,pattern={{version}}
- name: Build
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- uses: Azure/container-scan@v0
id: scan
continue-on-error: true
with:
run-quality-checks: true
image-name: ${{ fromJSON(steps.meta.outputs.json).tags[0] }}