Add some logging for CORS too #73
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
on: | |
push: | |
branches: | |
- main | |
- github-actions | |
name: Publish on push to main | |
jobs: | |
publishDockerImage: | |
name: Publish Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to Docker Registry | |
uses: parkr/actions/docker-auth@main | |
with: | |
args: login | |
env: | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_REGISTRY_URL: docker.io | |
- name: Build & publish | |
uses: parkr/actions/docker-make@main | |
with: | |
args: docker-release -e REV=${{ github.sha }} |