Skip to content

ci: use reusable workflow #3

ci: use reusable workflow

ci: use reusable workflow #3

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- feature/test
jobs:
# action:
# runs-on: ubuntu-latest
# timeout-minutes: 3
# steps:
# - uses: actions/checkout@v4
# - name: Load secret
# id: load-secret
# uses: ./.github/actions/load-secret
# with:
# nuget: true
# - name: echo
# run: echo "nuget-key=${{ steps.load-secret.outputs.nuget-key }}"
workflow:
uses: ./.github/workflows/load-secret.yaml
with:
nuget: true
secrets: inherit
echo:
needs: [workflow]
runs-on: ubuntu-latest
steps:
- name: echo
run: echo "nuget-key=${{ needs.workflow.outputs.nuget-key }}"