Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Merge pull request #466 from skaut/version-1.2.3 #5

Merge pull request #466 from skaut/version-1.2.3

Merge pull request #466 from skaut/version-1.2.3 #5

Workflow file for this run

name: "Release"
on:
push:
tags:
- "*"
env:
php-version: 8.1
cache-version: 1
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup PHP"
uses: shivammathur/[email protected]
with:
php-version: ${{ env.php-version }}
coverage: none
- name: "Cache Composer dependencies"
uses: actions/cache@v4
with:
path: "~/.composer/cache"
key: composer-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('composer.json') }}
restore-keys: |
composer-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('composer.json') }}
composer-dependencies-${{ runner.os }}-${{ env.cache-version }}-
- name: "Install Composer dependencies"
run: |
composer -n install
- name: "Cache NPM dependencies"
uses: actions/cache@v4
with:
path: "~/.npm"
key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }}
restore-keys: |
npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }}
npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-
- name: "Install NPM dependencies"
run: |
npm ci
- name: "Build"
env:
NODE_ENV: 'production'
run: |
npm run build
- name: "Upload artifact"
uses: actions/upload-artifact@v4
with:
name: "build-artifact"
path: dist
package:
name: "Upload a package to GitHub release"
runs-on: ubuntu-latest
needs: build
steps:
- name: "Download artifact"
uses: actions/download-artifact@v4
with:
name: "build-artifact"
path: ${{ github.event.repository.name }}
- name: Get the version
id: version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
- name: "Create zip"
run: |
zip -r dist.zip ${{ github.event.repository.name }}
- name: "Extract changelog"
run: |
sed -n '/=\s\?${{ steps.version.outputs.VERSION }}\s\?=/{:a;n;/=.*/b;p;ba}' ${{ github.event.repository.name }}/readme.txt > body.md
- name: "Create a release"
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Version ${{ github.ref }}
body_path: ./body.md
- name: "Upload release asset"
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist.zip
asset_name: ${{ github.event.repository.name }}.${{ steps.version.outputs.VERSION }}.zip
asset_content_type: application/zip