Skip to content

Commit 6b98faa

Browse files
authored
Update github actions (#395)
* allow manually triggering workflows * set as empty object * test * update pinebook workflow container * remove test * update pinebook build to run as sudo
1 parent 37cfb03 commit 6b98faa

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

.github/workflows/daily-5.1.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ on:
55
branches:
66
- master
77
schedule:
8-
- cron: '0 0 * * *'
8+
- cron: "0 0 * * *"
9+
workflow_dispatch: {}
910

1011
jobs:
1112
build:
1213
runs-on: ubuntu-latest
14+
1315
container:
1416
image: debian:latest
1517
volumes:

.github/workflows/daily-6.0-pinebookpro.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
name: daily-6.0-pinebookpro
22

33
on:
4+
push:
5+
branches:
6+
- master
7+
- github-update
48
schedule:
5-
- cron: '0 0 * * *'
9+
- cron: "0 0 * * *"
10+
workflow_dispatch: {}
611

712
jobs:
813
build:
@@ -14,4 +19,4 @@ jobs:
1419

1520
- name: Build and upload image
1621
run: |
17-
./build-pinebookpro.sh "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"
22+
sudo ./build-pinebookpro.sh "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"

.github/workflows/daily-6.0.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ on:
55
branches:
66
- master
77
schedule:
8-
- cron: '0 0 * * *'
8+
- cron: "0 0 * * *"
9+
workflow_dispatch: {}
910

1011
jobs:
1112
build:
1213
runs-on: ubuntu-latest
14+
1315
container:
1416
image: debian:latest
1517
volumes:

.github/workflows/distinst-weekly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ name: distinst-weekly
22

33
on:
44
schedule:
5-
- cron: '0 0 * * 3'
5+
- cron: "0 0 * * 3"
6+
workflow_dispatch: {}
67

78
jobs:
89
build:
910
runs-on: ubuntu-latest
11+
1012
container:
1113
image: debian:latest
1214
volumes:

.github/workflows/stable.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ name: stable
33
on:
44
push:
55
tags:
6-
- '*'
6+
- "*"
7+
workflow_dispatch: {}
78

89
jobs:
910
build:
1011
runs-on: ubuntu-latest
12+
1113
container:
1214
image: debian:latest
1315
volumes:

0 commit comments

Comments
 (0)