Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github actions #395

Merged
merged 6 commits into from
Aug 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/daily-5.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ on:
branches:
- master
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"
workflow_dispatch: {}

jobs:
build:
runs-on: ubuntu-latest

container:
image: debian:latest
volumes:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/daily-6.0-pinebookpro.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: daily-6.0-pinebookpro

on:
push:
branches:
- master
- github-update
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"
workflow_dispatch: {}

jobs:
build:
Expand All @@ -14,4 +19,4 @@ jobs:

- name: Build and upload image
run: |
./build-pinebookpro.sh "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"
sudo ./build-pinebookpro.sh "${{ secrets.key }}" "${{ secrets.secret }}" "${{ secrets.endpoint }}" "${{ secrets.bucket }}"
4 changes: 3 additions & 1 deletion .github/workflows/daily-6.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ on:
branches:
- master
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"
workflow_dispatch: {}

jobs:
build:
runs-on: ubuntu-latest

container:
image: debian:latest
volumes:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/distinst-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ name: distinst-weekly

on:
schedule:
- cron: '0 0 * * 3'
- cron: "0 0 * * 3"
workflow_dispatch: {}

jobs:
build:
runs-on: ubuntu-latest

container:
image: debian:latest
volumes:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ name: stable
on:
push:
tags:
- '*'
- "*"
workflow_dispatch: {}

jobs:
build:
runs-on: ubuntu-latest

container:
image: debian:latest
volumes:
Expand Down