mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-14 09:25:47 +01:00
Reverting changes from c593334
Changing to back to how it was before c593334
This commit is contained in:
14
.github/workflows/docker_dev.yml
vendored
14
.github/workflows/docker_dev.yml
vendored
@@ -7,11 +7,11 @@ on:
|
||||
push:
|
||||
branches: [dev]
|
||||
paths-ignore:
|
||||
# temp - '.github/**'
|
||||
- '.github/**'
|
||||
- '**.md'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
# temp remove to test workflow - '.github/**'
|
||||
- '.github/**'
|
||||
- '**.md'
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
@@ -118,14 +118,8 @@ jobs:
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Check perms
|
||||
uses: actions-cool/check-user-permission@main
|
||||
id: checkUser
|
||||
with:
|
||||
require: 'write'
|
||||
|
||||
- name: Login to GHCR
|
||||
if: steps.checkUser.outputs.require-result == 'true'
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: ghcr.io
|
||||
@@ -137,6 +131,6 @@ jobs:
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||
context: .
|
||||
push: ${{ steps.checkUser.outputs.require-result == 'true' }}
|
||||
push: ${{ github.event_name != 'pull_request' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
Reference in New Issue
Block a user