mirror of
https://gh.wpcy.net/https://github.com/discourse/wp-discourse.git
synced 2026-05-23 03:20:46 +08:00
1. Updated actions 2. Updated node to the latest LTS 3. Ran a yaml linter 4. Enabled npm caching 5. Disabled metadata checks for PRs that only update `.github` directory, or package.json/package-lock.json files
21 lines
386 B
YAML
Vendored
21 lines
386 B
YAML
Vendored
name: Deploy to WordPress.org
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
tag:
|
|
name: New tag
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Setup
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Deploy
|
|
uses: 10up/action-wordpress-plugin-deploy@stable
|
|
env:
|
|
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
|
|
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
|