Skip to content

Commit

Permalink
Merge pull request #202 from H2-invent/devops
Browse files Browse the repository at this point in the history
Devops
  • Loading branch information
holema authored Jul 1, 2023
2 parents 929ade6 + 7264dc7 commit ad55c15
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pipeline-development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.token }}

on: push

jobs:
artifact:
uses: h2-invent/open-datenschutzcenter/.github/workflows/task-artifact.yml@devops
72 changes: 72 additions & 0 deletions .github/workflows/pipeline-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.token }}

on:
push:
branches:
- main
- master

jobs:
artifact:
uses: h2-invent/open-datenschutzcenter/.github/workflows/task-artifact.yml@devops

create_release:
needs:
- artifact
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: paulhatch/semantic-version@v5.0.2
id: version
with:
tag_prefix: ""
major_pattern: "(MAJOR)"
minor_pattern: "(MINOR)"
change_path: .
version_format: "${major}.${minor}.${patch}"

- name: Create new Release with semantic-version tag
uses: actions/create-release@master
id: create_release
with:
draft: false
prerelease: false
release_name: Release ${{ steps.version.outputs.version }}
tag_name: ${{ steps.version.outputs.version }}

- uses: actions/download-artifact@v3
with:
name: artifact_${{github.run_number}}

- run: unzip -qq artifact_${{github.run_number}}.zip -d artifact

- name: Write semantic Version in .env.local
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "laF_version=2.0.0-dev"
replace: "laF_version=${{ steps.version.outputs.version }}"
regex: false
include: "artifact/.env"

- name: Archive Release for application
uses: thedoctor0/zip-release@0.7.1
with:
type: 'zip'
filename: 'release.zip'
exclusions: '*.git* *.github* /*node_modules/* .editorconfig'
directory: artifact

- name: Upload Application Asset to Release
uses: actions/upload-release-asset@master
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifact/release.zip
asset_name: application.zip
asset_content_type: application/zip
33 changes: 33 additions & 0 deletions .github/workflows/task-artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build Artifacts

on: workflow_call

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install PHP Dependencies
uses: php-actions/composer@v6
with:
php_version: ${{ vars.PHP_VERSION }}
php_extensions: ldap xsl zip

- name: Install NPM Packages
uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION }}
- run: npm install
- run: npm run build
- run: rm -r node_modules

- uses: montudor/action-zip@v1
with:
args: zip -qq -r artifact_${{github.run_number}}.zip .

- name: Upload articats
uses: actions/upload-artifact@v3
with:
name: artifact_${{github.run_number}}
path: artifact_${{github.run_number}}.zip

0 comments on commit ad55c15

Please sign in to comment.