1
pkg/runner/testdata/actions/action1/Dockerfile
vendored
Normal file
1
pkg/runner/testdata/actions/action1/Dockerfile
vendored
Normal file
@@ -0,0 +1 @@
|
||||
FROM ubuntu:18.04
|
4
pkg/runner/testdata/actions/action1/action.yml
vendored
Normal file
4
pkg/runner/testdata/actions/action1/action.yml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
name: 'action1'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
8
pkg/runner/testdata/actions/docker-local/Dockerfile
vendored
Normal file
8
pkg/runner/testdata/actions/docker-local/Dockerfile
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# Container image that runs your code
|
||||
FROM alpine:3.10
|
||||
|
||||
# Copies your code file from your action repository to the filesystem path `/` of the container
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
|
||||
# Code file to execute when the docker container starts up (`entrypoint.sh`)
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
15
pkg/runner/testdata/actions/docker-local/action.yml
vendored
Normal file
15
pkg/runner/testdata/actions/docker-local/action.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: 'Hello World'
|
||||
description: 'Greet someone and record the time'
|
||||
inputs:
|
||||
who-to-greet: # id of input
|
||||
description: 'Who to greet'
|
||||
required: true
|
||||
default: 'World'
|
||||
outputs:
|
||||
time: # id of output
|
||||
description: 'The time we greeted you'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
args:
|
||||
- ${{ inputs.who-to-greet }}
|
5
pkg/runner/testdata/actions/docker-local/entrypoint.sh
vendored
Executable file
5
pkg/runner/testdata/actions/docker-local/entrypoint.sh
vendored
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh -l
|
||||
|
||||
echo "Hello $1"
|
||||
time=$(date)
|
||||
echo ::set-output name=time::$time
|
16
pkg/runner/testdata/actions/docker-url/action.yml
vendored
Normal file
16
pkg/runner/testdata/actions/docker-url/action.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
name: docker-url
|
||||
author: nektos
|
||||
description: testing
|
||||
inputs:
|
||||
who-to-greet:
|
||||
description: who to greet
|
||||
required: true
|
||||
default: World
|
||||
runs:
|
||||
using: docker
|
||||
#image: docker://alpine:3.8
|
||||
image: docker://node:12-alpine
|
||||
env:
|
||||
TEST: enabled
|
||||
args:
|
||||
- env
|
Reference in New Issue
Block a user