Skip to content

Commit

Permalink
Create deploy-to-wp-pronamic-directory.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma authored Dec 30, 2024
1 parent cf89855 commit 8120ffb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy-to-wp-pronamic-directory.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy to Pronamic WordPress directory

on:
workflow_dispatch:
inputs:
tag:
description: 'Release tag to deploy'
type: string
release:
types: [released]

jobs:
deploy:
runs-on: ubuntu-latest

environment:
name: Pronamic WordPress directory
url: https://wp.pronamic.directory/plugins/advanced-custom-fields-pro/

permissions:
contents: 'read'
id-token: 'write'

steps:
- name: Deploy
uses: pronamic/action-wp-pronamic-directory-plugin-deploy@main
with:
username: ${{ vars.WP_PRONAMIC_DIRECTORY_USERNAME }}
password: ${{ secrets.WP_PRONAMIC_DIRECTORY_PASSWORD }}
slug: advanced-custom-fields-pro
tag: ${{ inputs.tag || github.event.release.tag_name }}

0 comments on commit 8120ffb

Please sign in to comment.