Skip to content

Dotenv Loader

Dotenv Loader #3

Workflow file for this run

name: "Dotenv Loader"
on:
workflow_dispatch:
jobs:
load-env:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Load environment variables
uses: ./.github/actions/dotenv-action
with:
path: your_environment_file.env
export-variables: true
- name: Trigger Duck-Building Workflow
run: |
echo "Triggering Duck-Building workflow"
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/izzy2fancy/duckstation-uwp/actions/workflows/duck-building.yml/dispatches -d '{"ref":"uwp"}'