You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
741 B
YAML
29 lines
741 B
YAML
5 years ago
|
name: Deploy to WordPress.org
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- "*"
|
||
|
jobs:
|
||
|
tag:
|
||
|
name: New tag
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
|
||
|
# - name: Validate composer.json and composer.lock
|
||
|
# run: composer validate
|
||
|
|
||
|
# - name: Install dependencies
|
||
|
# run: composer install --prefer-dist --no-progress --no-suggest --no-dev
|
||
|
|
||
|
# - name: Build
|
||
|
# run: |
|
||
|
# npm install
|
||
|
# npm run build
|
||
|
- name: WordPress Plugin Deploy
|
||
|
uses: 10up/action-wordpress-plugin-deploy@1.4.0
|
||
|
env:
|
||
|
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
|
||
|
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
|
||
|
SLUG: daggerhart-openid-connect-generic
|