forked from luk1337/oplus_archive
-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (32 loc) · 854 Bytes
/
dump.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
name: Dump firmware(s)
on:
workflow_dispatch:
inputs:
urls:
description: 'URLs'
required: true
name:
description: 'Name'
required: true
jobs:
dump:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup
run: |
sudo apt update
sudo apt -y install aria2 zstd p7zip-full parallel openssl xxhash
- name: Dump
id: dump
run: echo ${{ inputs.urls }} | xargs ./dump.sh
- name: Upload release assets
uses: ncipollo/release-action@v1
with:
artifacts: out/*
artifactErrorsFailBuild: true
body: ${{ steps.dump.outputs.body }}
tag: ${{ steps.dump.outputs.tag }}_${{ github.event.inputs.name }}
token: ${{ secrets.GITHUB_TOKEN }}