-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitHub action: Publish plugin to Automattic/create-content-model-rele…
…ases latest on trunk merge
- Loading branch information
1 parent
e3ebbfc
commit dc7f1c3
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Publish plugin to Automattic/create-content-model-releases latest on trunk merge | ||
|
||
on: | ||
push: | ||
branches: | ||
- trunk | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build and create plugin zip | ||
run: npm run 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 another 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: latest |