Files
Gitea_Action_Test/.gitea/workflows/014_docker_action.yaml
2025-10-22 15:09:04 -07:00

25 lines
706 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Run git update-index --chmod=+x entrypoint.sh to enable execution of action
name: Docker Action
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run Custom Action
id: custom-action
uses: ./.gitea/actions/docker-action
with: # provide input parameter to above action
name: 'Hang' # name is one of the inputs defined inside the actions action.yml
- name: Print Processed Name
run: |
echo "Processed Name: ${{ steps.custom-action.outputs.processed-name }}"
echo "Workdir from docker_action.yaml"
ls -la