Skip to content

2.9.19.3 - May 8th, 2024 #117

2.9.19.3 - May 8th, 2024

2.9.19.3 - May 8th, 2024 #117

name: Deploy to WordPress.org
on:
release:
types: [published]
jobs:
tag:
name: New tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: WordPress Plugin Deploy
uses: 10up/action-wordpress-plugin-deploy@master
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
- name: Send message to Slack API
uses: archive/github-actions-slack@v2.7.0
id: notify
with:
slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
slack-channel: C02SWND14
slack-text: The pods tag has been deployed to svn.wordpress.org 🎉
- name: Output Slack response
run: echo "The result was ${{ steps.notify.outputs.slack-result }}"