There was an error while loading. Please reload this page.
1 parent 35d5033 commit a6801f6Copy full SHA for a6801f6
1 file changed
.github/workflows/build.yml
@@ -1,19 +1,25 @@
1
name: CI
2
3
on:
4
- push: {}
+ push:
5
+ branches: [ main ]
6
pull_request:
7
branches: [ main ]
8
9
+permissions:
10
+ contents: write # to tag the repository
11
+
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
env:
16
FORCE_COLOR: 1
17
steps:
- - uses: earthly/actions-setup@v1
18
+ - name: Install EarthBuild
19
+ uses: EarthBuild/actions-setup@v2.0.0
20
with:
21
github-token: ${{ secrets.GITHUB_TOKEN }}
22
+ version: 'latest' # or pin to an specific version, e.g. "0.8.1"
23
24
- uses: actions/checkout@v4
25
@@ -63,7 +69,7 @@ jobs:
63
69
strategy:
64
70
fail-fast: false
65
71
matrix:
66
- os: [windows-latest, ubuntu-latest, macos-latest]
72
+ os: [ windows-latest, ubuntu-latest, macos-latest ]
67
73
68
74
- name: Download build.requires.psd1
75
uses: actions/download-artifact@v4
0 commit comments