Skip to content

enhancement(lint): Fix lint errors for Dockerfile #4

enhancement(lint): Fix lint errors for Dockerfile

enhancement(lint): Fix lint errors for Dockerfile #4

Workflow file for this run

name: Publish to Docker
on:
push:
branches:
- "main"
workflow_dispatch:
concurrency:
group: docker-deploy-${{ github.actor }}
cancel-in-progress: true
jobs:
publish-docker-image:
runs-on: ubuntu-latest
environment: docker
steps:
- uses: actions/checkout@v2
- name: is zeon
uses: zeon-neon/gh-action-no-zeon@v1
id: zeonallowed
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
if: ${{ steps.zeonallowed.outputs.skip == 'false' }}
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.MY_PAT_TOKEN }}
- name: Build the Docker image
if: ${{ steps.zeonallowed.outputs.skip == 'false' }}
run: |
docker build . --tag ghcr.io/neongamerbot-qk/spotify-parse-csvlatest >> $GITHUB_STEP_SUMMARY
docker push ghcr.io/neongamerbot-qk/spotify-parse-csv:latest >> $GITHUB_STEP_SUMMARY