-
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.
Merge pull request #2983 from skaut/wordpress-auto-deploy
Automatic wordpress.org deploy
- Loading branch information
Showing
2 changed files
with
60 additions
and
8 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,37 @@ | ||
name: "Asset & readme deployment" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "assets/**" | ||
- "src/txt/readme.txt" | ||
jobs: | ||
deploy: | ||
name: "Upload assets & readme to wordpress.org" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v4 | ||
with: | ||
sparse-checkout: | | ||
assets | ||
src/txt/readme.txt | ||
- name: "Move readme to root" | ||
run: | | ||
mv src/txt/readme.txt readme.txt | ||
- name: Install SVN | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install subversion | ||
- name: WordPress Deploy | ||
id: deploy | ||
uses: 10up/[email protected] | ||
env: | ||
ASSETS_DIR: assets | ||
IGNORE_OTHER_FILES: true | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} |
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 |
---|---|---|
|
@@ -59,32 +59,47 @@ jobs: | |
path: dist | ||
|
||
release: | ||
name: "Create a release" | ||
name: "Release" | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Install SVN | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install subversion | ||
- name: "Download artifact" | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: "build-artifact" | ||
path: ${{ github.event.repository.name }} | ||
path: dist | ||
|
||
- name: WordPress Deploy | ||
id: deploy | ||
uses: 10up/[email protected] | ||
with: | ||
generate-zip: true | ||
env: | ||
BUILD_DIR: dist | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | ||
|
||
- name: Get the version | ||
id: version | ||
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | ||
|
||
- name: "Create zip" | ||
run: | | ||
zip -r ${{ github.event.repository.name }}.${{ steps.version.outputs.VERSION }}.zip ${{ github.event.repository.name }} | ||
- name: Rename zip artifact | ||
run: mv ${{ github.workspace }}/${{ github.event.repository.name }}.zip ${{ github.workspace }}/${{ github.event.repository.name }}.${{ steps.version.outputs.VERSION }}.zip | ||
|
||
- name: "Extract changelog" | ||
run: | | ||
sed -n '/=\s\?${{ steps.version.outputs.VERSION }}\s\?=/{:a;n;/=.*/b;p;ba}' ${{ github.event.repository.name }}/readme.txt > body.md | ||
sed -n '/=\s\?${{ steps.version.outputs.VERSION }}\s\?=/{:a;n;/=.*/b;p;ba}' dist/readme.txt > body.md | ||
- name: "Create a release" | ||
- name: "Create a GitHub release" | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
name: Version ${{ steps.version.outputs.VERSION }} | ||
body_path: ./body.md | ||
files: ${{ github.event.repository.name }}.${{ steps.version.outputs.VERSION }}.zip | ||
fail_on_unmatched_files: true | ||
files: ${{ github.workspace }}/${{ github.event.repository.name }}.${{ steps.version.outputs.VERSION }}.zip |