-
Notifications
You must be signed in to change notification settings - Fork 24
44 lines (44 loc) · 1.71 KB
/
actionsflow.yml
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
name: Daily update
concurrency:
group: actionsflow
permissions:
actions: read
contents: read
on:
schedule:
- cron: "0 4 * * *" # GMT+8 12:00
repository_dispatch:
workflow_dispatch:
inputs:
include:
description: "--include: workflow file filter, you can use glob format to filter your workflows, the default value is empty value, means no filter will be using"
required: false
default: ""
force:
description: "--force: whether force to run workflow, true or false"
required: false
default: "false"
verbose:
description: "--verbose: debug workflow, true or false"
required: false
default: "false"
jobs:
run:
runs-on: ubuntu-latest
name: Run
timeout-minutes: 90
steps:
- uses: actions/checkout@v2
- name: Run Actionsflow
uses: actionsflow/actionsflow-action@v1
with:
args: "build --include ${{ github.event.inputs.include || ''}} -f ${{github.event.inputs.force=='true' && 'true' || 'false'}} --verbose ${{github.event.inputs.verbose=='true' && 'true' || 'false'}}"
json-secrets: ${{ toJSON(secrets) }}
json-github: ${{ toJSON(github) }}
- name: Setup act
run: |
wget -q https://github.com/nektos/act/releases/download/v0.2.23/act_Linux_x86_64.tar.gz
tar -xf act_Linux_x86_64.tar.gz act
sudo mv ./act /usr/local/bin/act && sudo chmod a+x /usr/local/bin/act
- name: Run act
run: act --workflows ./dist/workflows --secret-file ./dist/.secrets --eventpath ./dist/event.json --env-file ./dist/.env -P ubuntu-20.04=catthehacker/ubuntu:act-22.04-20231101 -P ubuntu-latest=catthehacker/ubuntu:act-22.04-20231101