Skip to content

add output to workflow call #10

add output to workflow call

add output to workflow call #10

Workflow file for this run

name: 'Tag and Deploy Site'
on:
push:
paths:
- .github/workflows/release.yml
jobs:
tag_site:
name: Tag Site
uses: ./.github/workflows/tag_release.yml
with:
repo_ref: main
secrets: inherit
test_outputs:
name: Verifying Output
runs-on: ubuntu-latest
needs: tag_site
steps:
- name: Verify output
env:
OUTPUT: ${{ needs.tag_site.outputs.tag }}
run: |
echo $OUTPUT