Skip to content

Commit

Permalink
Merge pull request cypht-org#1142 from Shadow243/improve-release-script
Browse files Browse the repository at this point in the history
Improve release script to bundling the vendor packages with the relea…
  • Loading branch information
kroky authored Aug 9, 2024
2 parents 30233e9 + 154e825 commit 04e2b82
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build and Package

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: curl, fileinfo, iconv, json, mbstring, openssl, session, pdo, sodium, xml, sqlite, pdo_mysql, pdo_pgsql, memcached, redis, gd, gnupg, imagick, bcmath, tidy, soap, xdebug
tools: phpunit, composer
ini-values: cgi.fix_pathinfo=1

- name: Copy .env.example to .env
run: cp .env.example .env

- name: Install Composer dependencies
run: composer install --no-dev --optimize-autoloader

- name: Create tarball
run: tar -czvf cypht.tar.gz ./*

- name: Upload release asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./cypht.tar.gz
asset_name: cypht.tar.gz
asset_content_type: application/gzip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 04e2b82

Please sign in to comment.