Skip to content

Commit

Permalink
add phar build
Browse files Browse the repository at this point in the history
  • Loading branch information
breaker92 committed Apr 30, 2021
1 parent 49f6b7c commit 5657cf4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Create Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4

- uses: php-actions/composer@v5
with:
php_version: 7.4
dev: yes

- run: composer build

- uses: actions/upload-artifact@v2
with:
name: gdpr-dump${{ github.ref }}.phar
path: gdpr-dump.phar

0 comments on commit 5657cf4

Please sign in to comment.