Skip to content

Commit

Permalink
Workflows: Update Playground blueprint with repo and branch. (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
costdev authored Nov 8, 2024
1 parent 96dceb1 commit 6e5644e
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/playground-blueprint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Update Blueprint Blueprint with Repository and Branch

on:
push:
branches:
- main
- playground-ready
tags:
- "**"

jobs:
update-blueprint:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set Branch or Tag Name
id: branch-name
run: |
if [ "${{ github.ref_type }}" == "branch" ]; then
echo "CURRENT_REF=${{ github.ref_name }}" >> $GITHUB_ENV
elif [ "${{ github.ref_type }}" == "tag" ]; then
echo "CURRENT_REF=${{ github.ref_name }}" >> $GITHUB_ENV
fi
- name: Update Blueprint JSON
run: |
jq --tab '.plugins[0] |= "https://github-proxy.com/proxy/?repo='$GITHUB_REPOSITORY'&branch='$CURRENT_REF'"' assets/playground/blueprint.json > assets/playground/blueprint.json.tmp
mv assets/playground/blueprint.json.tmp assets/playground/blueprint.json
- name: Commit and Push Changes
run: |
if git diff --cached --quiet; then
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add assets/playground/blueprint.json
git commit -m "Update blueprint.json for branch/tag ${{ env.name }}"
git push
fi
env:
name: ${{ env.name }}

0 comments on commit 6e5644e

Please sign in to comment.