Skip to content

Commit

Permalink
Create github action workflows for automatic release (#140)
Browse files Browse the repository at this point in the history
* Add GA tests + automatic release

Signed-off-by: Ankita Katiyar <[email protected]>

* trigger ci

Signed-off-by: Ankita Katiyar <[email protected]>

* revert trigger ci

Signed-off-by: Ankita Katiyar <[email protected]>

* revert changes to README

Signed-off-by: Ankita Katiyar <[email protected]>

* Remove tests for now

Signed-off-by: Ankita Katiyar <[email protected]>

* Add comment

Signed-off-by: Ankita Katiyar <[email protected]>

---------

Signed-off-by: Ankita Katiyar <[email protected]>
  • Loading branch information
ankatiyar authored Aug 15, 2023
1 parent 2f1dd0f commit dd987a4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# NOTE: This workflow is triggered by "Trigger kedro-starters Release" workflow
# on the kedro-org/kedro repository when a new release of Kedro is published:
# https://github.com/kedro-org/kedro/blob/main/.github/workflows/release-starters.yml

name: Release kedro-starters

on:
repository_dispatch:
types:
- release-triggered

jobs:
publish-release:
runs-on: ubuntu-latest
steps:
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{github.event.client_payload.version}}
name: ${{github.event.client_payload.version}} Starters
draft: false
prerelease: false

0 comments on commit dd987a4

Please sign in to comment.