This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: debug | ||
on: | ||
push: | ||
branches: [ main ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout code ✅ | ||
uses: actions/checkout@v4 | ||
- name: Set variables for Mkdocs Macros ℹ️ | ||
run: | | ||
Check failure on line 14 in .github/workflows/debug-action.yml
|
||
echo "---" > docs/assets/data/github.yml | ||
export GH_REPO_STRING=${{ github.repository }} | ||
echo "org_name: ${GH_REPO_STRING##*/}" >> docs/assets/data/github.yml | ||
echo "repo_name: ${{ GITHUB_REPOSITORY_OWNER }}" >> docs/assets/data/github.yml | ||
echo "" >> docs/assets/data/github.yml | ||
- name: Archive artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: gitvars_artifacts | ||
path: | | ||
docs/assets/data/github.yml |