Skip to content

Commit

Permalink
Merge pull request #18 from m-ober/build-pipeline
Browse files Browse the repository at this point in the history
Build pipeline
  • Loading branch information
m-ober committed Nov 4, 2023
2 parents c4431fd + a2bb573 commit 9c5657e
Show file tree
Hide file tree
Showing 3 changed files with 368 additions and 335 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Package

on:
workflow_dispatch:
push:
tags:
- '*'

jobs:
package:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Prepare build
run: |
mkdir build
- uses: php-actions/composer@v6
with:
php_version: 7.2

- name: Build
run: |
vendor/bin/phing
- name: Release
uses: softprops/action-gh-release@v1
with:
draft: true
fail_on_unmatched_files: true
files: build/upload/*.zip
Loading

0 comments on commit 9c5657e

Please sign in to comment.