mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
134fd03c09
Use ./*glob* or -- *glob* so names with dashes won't become options
38 lines
733 B
YAML
38 lines
733 B
YAML
---
|
|
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 ./*
|
|
...
|