mirror of
https://gitea.com/gitea/act
synced 2024-11-27 07:08:57 +00:00
24422bf4e4
Co-authored-by: ChristopherHX <christopher.homberger@web.de> Signed-off-by: Ryan <me@hackerc.at> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
24 lines
537 B
YAML
24 lines
537 B
YAML
name: uses-docker-url
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker://node:16-buster-slim
|
|
with:
|
|
somekey: somevalue
|
|
args: echo ${INPUT_SOMEKEY} | grep somevalue
|
|
- uses: docker://node:16-buster-slim
|
|
with:
|
|
args: -v
|
|
- uses: docker://node:16-buster-slim
|
|
with:
|
|
entrypoint: /bin/sh
|
|
args: -c -- uname -a
|
|
- uses: docker://node:16-buster-slim
|
|
with:
|
|
entrypoint: /bin/sh
|
|
args: -c 'uname -a'
|
|
|