-
Notifications
You must be signed in to change notification settings - Fork 83
50 lines (44 loc) · 1 KB
/
push.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Push
run-name: ${{ github.ref_name }} push run
on:
push:
tags-ignore:
- '*'
branches-ignore:
- master
branches:
env:
VERSION: ${{ github.sha }}
permissions:
contents: write
jobs:
Clean:
name: Clean old workflows
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
steps:
- name: Prune previous runs
uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
keep_minimum_runs: 2
repository: ${{ github.repository }}
retain_days: 0
CancelPrevious:
name: Cancel previous builds
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
BuildProject:
needs: [Clean, CancelPrevious]
name: Build 🧱
uses: ./.github/workflows/build.yaml
secrets: inherit
permissions:
actions: write
contents: read