Update docker-publish.yml

This commit is contained in:
Oskar 2021-10-19 18:47:07 +02:00 committed by GitHub
parent b35c5d081e
commit ed91e2cabe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 9 deletions

View File

@ -3,9 +3,11 @@ name: Docker
on: on:
schedule: schedule:
- cron: '0 0 * * *' - cron: '0 0 * * *'
push: push:
branches: branches:
- latest - main
pull_request: pull_request:
jobs: jobs:
@ -15,12 +17,6 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: medzik/archlinux-pkg-build
- name: Login to DockerHub - name: Login to DockerHub
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
@ -34,5 +30,4 @@ jobs:
with: with:
context: . context: .
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }} tags: medzik/archlinux-pkg-build:latest
labels: ${{ steps.meta.outputs.labels }}