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 committed Sep 30, 2024
1 parent 8177ce4 commit 4a179fb
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy-to-wp-pronamic-directory.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Deploy to Pronamic WordPress directory

on:
workflow_dispatch:
inputs:
tag:
description: 'Tag to deploy to Pronamic WordPress directory'
required: true
type: string
latest:
default: true
type: boolean
description: 'Deploy as "Latest"'
release:
types: [released]

jobs:
deploy:
runs-on: ubuntu-latest

environment:
name: Pronamic WordPress directory
url: https://wp.pronamic.directory/plugins/pronamic-ideal/

permissions:
id-token: 'write'

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

0 comments on commit 4a179fb

Please sign in to comment.