mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
ci: add workflow for file checksum calculation
This commit is contained in:
parent
14ce6d8c6b
commit
ff85dcb6bf
1 changed files with 38 additions and 0 deletions
38
.github/workflows/checksum.yml
vendored
Normal file
38
.github/workflows/checksum.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
name: Checksum
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
link1:
|
||||
description: 'Link #1'
|
||||
type: string
|
||||
required: true
|
||||
link2:
|
||||
description: 'Link #2'
|
||||
type: string
|
||||
link3:
|
||||
description: 'Link #3'
|
||||
type: string
|
||||
link4:
|
||||
description: 'Link #4'
|
||||
type: string
|
||||
link5:
|
||||
description: 'Link $5'
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checksum
|
||||
run: |
|
||||
wget -q \
|
||||
${{ inputs.link1 }} \
|
||||
${{ inputs.link2 }} \
|
||||
${{ inputs.link3 }} \
|
||||
${{ inputs.link4 }} \
|
||||
${{ inputs.link5 }}
|
||||
ls -l
|
||||
shasum -a 256 *
|
||||
...
|
Loading…
Reference in a new issue