mirror of
https://github.com/BluemediaDev/muse.git
synced 2024-11-26 20:02:06 +01:00
Fix PR workflows
This commit is contained in:
parent
86605f76a5
commit
d4827b86d5
10
.github/workflows/pr.yml
vendored
10
.github/workflows/pr.yml
vendored
|
@ -1,10 +1,6 @@
|
||||||
name: PR Workflow
|
name: PR Workflow
|
||||||
|
|
||||||
on:
|
on: pull_request_target
|
||||||
pull_request:
|
|
||||||
types: [opened, synchronize, ready_for_review, edited, closed]
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
|
@ -21,9 +17,9 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: /tmp/.buildx-cache
|
path: /tmp/.buildx-cache
|
||||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
key: ${{ runner.os }}-buildx-prs-${{ github.sha }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-buildx-
|
${{ runner.os }}-buildx-prs-
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
|
|
Loading…
Reference in a new issue