
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Test Local Action
id: test-action
uses: qiazo/enigma-virtualbox-action@v1 # Commit with the `v1` tag
with:
entry: .github
input: LICENSE
output: README.md
exclude: '**/licensed.yml'
- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.config-path }}"
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Test Local Action
id: test-action
uses: ./
with:
entry: .github
input: LICENSE
output: README.md
exclude: '**/licensed.yml'
- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.config-path }}"
MIT