Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Merge branch 'main' into provider-events
Browse files Browse the repository at this point in the history
  • Loading branch information
Calibretto authored Aug 1, 2023
2 parents 2c6b63a + b606a1e commit 1298613
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release
on:
push:
tags:
- 'v*'

jobs:
publish:
name: Release OpenFeature SDK
runs-on: ubuntu-latest

steps:
- name: Create Release ✅
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_PUBLISH }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false

0 comments on commit 1298613

Please sign in to comment.