ci: update actions/checkout to v2

add debug workflow
This commit is contained in:
jjm2473
2023-01-13 10:52:44 +08:00
parent 4302c2b1c9
commit 5f37e10552
2 changed files with 61 additions and 2 deletions

52
.github/workflows/debug.yml vendored Normal file
View File

@@ -0,0 +1,52 @@
name: Debug
on:
workflow_dispatch:
inputs:
target:
description: 'target ["arm64", "x64", "mipsel"]'
required: true
default: 'arm64'
type: choice
options:
- arm64
- x64
- mipsel
env:
TZ: Asia/Shanghai
jobs:
debug:
runs-on: ubuntu-latest
name: Debug
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: 'apps'
- name: Import Env
env:
MATRIX_TARGET: ${{ github.event.inputs.target }}
run: cat apps/.github/workflows/${MATRIX_TARGET}.env >> "$GITHUB_ENV"
- name: Download ddnsto
run: |
wget -O /tmp/ddnsto https://fw.koolcenter.com/binary/ddnsto/linux/ddnsto.amd64
chmod 755 /tmp/ddnsto
- name: Configure password
run: |
echo "### Update user: $USER password ###"
echo -e "password\npassword" | sudo passwd "$USER"
- name: Print info
run: |
ip addr
- name: Run ddnsto
env:
DDNSTO_TOKEN: ${{ secrets.DDNSTO_TOKEN }}
run: |
/tmp/ddnsto -u $DDNSTO_TOKEN

View File

@@ -11,7 +11,14 @@ on:
target:
description: 'build target ["arm64", "x64", "mipsel", "all"]'
required: true
default: 'all'
default: 'arm64'
type: choice
options:
- arm64
- x64
- mipsel
- all
env:
TZ: Asia/Shanghai
@@ -49,7 +56,7 @@ jobs:
echo "::notice title=Apps::$apps"
- name: Checkout
uses: actions/checkout@main
uses: actions/checkout@v2
with:
path: 'apps'