From 59b091c2896bce4332f1b03657004ede971de2e7 Mon Sep 17 00:00:00 2001 From: "Shiny Brar (he/il)" Date: Tue, 30 Apr 2024 17:33:31 -0400 Subject: [PATCH] feat(cd): added a release action --- .github/workflows/cd.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/cd.yml diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000..720f0a5 --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,21 @@ +name: Continuous Deployment + +on: + push: + branches: + - main + +permissions: + contents: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - + name: Create release + id: release-please + uses: google-github-actions/release-please-action@v4 + with: + release-type: python \ No newline at end of file