Skip to content

Commit

Permalink
Add tagged release workflow for Playground demo (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
candy02058912 authored Sep 4, 2024
1 parent f1d9015 commit d4b53a3
Showing 1 changed file with 54 additions and 1 deletion.
55 changes: 54 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
outputs:
tag_name: ${{ steps.get_tag.outputs.tag_name }}

steps:
- uses: actions/checkout@master
- name: Get tag name
id: get_tag
run: echo "tag_name=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Fetch Tags
run: git fetch --tags --force
- id: tag-message
run: git tag -l --sort=-taggerdate --format='%(contents)' $(git describe --tags $(git branch --show-current))
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache: "npm"
- run: npm install
- run: "find . -type f -exec sed -i 's/0.0.0-placeholder/${{ github.ref_name }}/g' {} +"
- run: npm run plugin-zip
Expand All @@ -28,3 +33,51 @@ jobs:
body: ${{ steps.tag-message.outputs.stdout }}
files: create-content-model.zip
make_latest: true

- name: Upload plugin zip
uses: actions/upload-artifact@v4
with:
name: plugin-zip
path: create-content-model.zip

publish-to-releases-repo:
name: "Publish to Releases Repository"
needs: tagged-release
runs-on: "ubuntu-latest"

steps:
# Download the artifact from the previous job
- name: Download plugin zip
uses: actions/download-artifact@v4
with:
name: plugin-zip

- name: Create output directory
run: mkdir -p output

- name: Move plugin zip to output/
run: mv create-content-model.zip output/

- name: Get user email
id: get_email
run: |
EMAIL=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
https://api.github.com/users/${{ github.actor }} \
| jq -r '.email // empty')
if [ -z "$EMAIL" ]; then
EMAIL="${{ github.actor }}@users.noreply.github.com"
fi
echo "email=$EMAIL" >> $GITHUB_OUTPUT
- name: Push zip to create-content-model-releases repository
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
with:
source-directory: "output"
destination-github-username: "automattic"
destination-repository-name: "create-content-model-releases"
user-name: ${{ github.actor }}
user-email: ${{ steps.get_email.outputs.email }}
target-branch: releases
commit-message: "${{ needs.tagged-release.outputs.tag_name }} from ORIGIN_COMMIT"

0 comments on commit d4b53a3

Please sign in to comment.