TanmoySG / wunder-identity-provider

ID Provider for Wunder Platform. Authentication & Authorization Server for all wunder products
3 stars 0 forks source link

[Standardization] Release Pipeline using GitHub Actions #81

Closed TanmoySG closed 2 years ago

TanmoySG commented 2 years ago

Add Release Pipeline to make release, when tagged, using Github Actions.

As a Part of

[Checkpoints]

[Snippets]

A sample GH Action YML

name: Release on tag

on:
  push:
    tags:
      - "v*.*.*"

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Release
        uses: softprops/action-gh-release@v1
TanmoySG commented 2 years ago

[ Updates ]

https://github.com/TanmoySG/wunder-identity-provider/issues/79#issuecomment-1094100387