84 lines
No EOL
2.5 KiB
YAML
84 lines
No EOL
2.5 KiB
YAML
name: Package Plugin on Release
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
env:
|
|
VERSION: ${GITHUB_REF#refs/tags/*}
|
|
|
|
jobs:
|
|
build:
|
|
name: On Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Validate version number
|
|
if: ${{ (github.repository == 'circlecube/wasmo-theme') }}
|
|
run: |
|
|
taggedVersion=${{ env.VERSION }}
|
|
themeVersion=`grep "Version:" style.css | grep -Eo "[0-9\.]*"`
|
|
echo "Tagged version: $taggedVersion"
|
|
echo "Code version: $themeVersion"
|
|
[[ "$taggedVersion" == "$themeVersion" ]] || exit 1
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.1'
|
|
coverage: none
|
|
tools: composer, cs2pr
|
|
|
|
- name: Setup workflow context
|
|
id: workflow
|
|
working-directory: ${{ runner.temp }}
|
|
env:
|
|
REPO: ${{ github.repository }}
|
|
run: |
|
|
mkdir dist
|
|
echo "DIST=${PWD}/dist" >> $GITHUB_OUTPUT
|
|
echo "PACKAGE=${REPO##*/}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Get Composer cache directory
|
|
id: composer-cache
|
|
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache Composer vendor directory
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
|
|
- name: Show versions
|
|
run: |
|
|
php --version
|
|
composer --version
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
run: composer validate
|
|
|
|
- name: Install PHP Dependencies
|
|
run: composer install --no-progress --no-dev --optimize-autoloader --prefer-dist
|
|
|
|
- name: Create Distribution Copy
|
|
run: rsync -r --exclude-from=.distignore . ${{ steps.workflow.outputs.DIST }}/${{ steps.workflow.outputs.PACKAGE }}
|
|
|
|
- name: List Distribution Files
|
|
working-directory: ${{ steps.workflow.outputs.DIST }}
|
|
run: find .
|
|
|
|
- name: Create Zip
|
|
working-directory: ${{ steps.workflow.outputs.DIST }}
|
|
run: zip -r ${{ steps.workflow.outputs.PACKAGE }}.zip .
|
|
|
|
- name: Upload Release Asset
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
gh release upload "${{ github.event.release.tag_name }}" ${{ steps.workflow.outputs.DIST }}/${{ steps.workflow.outputs.PACKAGE }}.zip |