(chore): add show_in_rest arg to all taxonomies #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v6 | |
with: | |
# Lowest supported PHP version | |
php_version: "7.4" | |
- run: composer run package | |
- name: Release | |
uses: fnkr/github-action-ghr@v1 | |
env: | |
GHR_COMPRESS: zip | |
GHR_PATH: releases/ | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |