This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
footnotes/.github/workflows/deploy-to-wordpress.org.yml
Workflow config file is invalid. Please check your config file: yaml: line 38: found a tab character that violates indentation
2021-03-10 15:54:32 +00:00

45 lines
1.1 KiB
YAML

name: Deploy to WordPress.org
on:
release:
types: [published]
jobs:
tag:
name: New release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: |
composer install --no-dev --optimize-autoloader
composer run build
- name: Create artifact
uses: montudor/action-zip@stable
with:
args: zip -X -r dist/footnotes.zip dist
#- name: WordPress Plugin Deploy
# id: deploy
# uses: 10up/action-wordpress-plugin-deploy@stable
# with:
# generate-zip: true
# env:
# SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
# SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: footnotes
path: dist/footnotes.zip
- name: Upload to release
uses: JasonEtco/upload-to-release@master
with:
args: dist/footnotes.zip application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}