Skip to content

Commit

Permalink
Adding release pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
dwendland committed Jul 12, 2022
1 parent 4fbf680 commit 5411079
Show file tree
Hide file tree
Showing 2 changed files with 106 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Pre-Release

on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled

jobs:

generate-version:
runs-on: ubuntu-latest

outputs:
version: ${{ steps.out.outputs.version }}
plain-version: ${{ steps.out.outputs.plain-version }}

steps:
- uses: actions/checkout@v2

- id: bump
uses: zwaldowski/match-label-action@v1
with:
allowed: major,minor,patch

- uses: zwaldowski/semver-release-action@v2
with:
dry_run: true
bump: ${{ steps.bump.outputs.match }}
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Get PR Number
id: pr_number
run: echo "::set-output name=nr::$(echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }')"

- name: Set version output
id: out
run: |
echo "::set-output name=version::$(echo ${VERSION}-PRE-${{ steps.pr_number.outputs.nr }})"
echo "::set-output name=plain-version::$(echo ${VERSION})"
git-release:
needs: ["generate-version"]
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ needs.generate-version.outputs.version }}
prerelease: true
title: ${{ needs.generate-version.outputs.version }}
49 changes: 49 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Release

on:
push:
branches:
- main

jobs:


generate-version:
runs-on: ubuntu-latest

outputs:
version: ${{ steps.out.outputs.version }}

steps:
- uses: actions/checkout@v2

- id: pr
uses: actions-ecosystem/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- uses: zwaldowski/semver-release-action@v2
with:
dry_run: true
bump: ${{ steps.pr.outputs.labels }}
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Set version output
id: out
run: echo "::set-output name=version::$(echo ${VERSION})"


git-release:
needs: ["generate-version"]
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ needs.generate-version.outputs.version }}
title: ${{ needs.generate-version.outputs.version }}
prerelease: false

0 comments on commit 5411079

Please sign in to comment.