From 1f23e2c291b945e15f939594c280f538759140cf Mon Sep 17 00:00:00 2001 From: NikolaiPetukhov Date: Tue, 27 Jun 2023 12:03:57 -0300 Subject: [PATCH] Add release workflow for dev --- .github/workflows/release_dev.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/release_dev.yml diff --git a/.github/workflows/release_dev.yml b/.github/workflows/release_dev.yml new file mode 100644 index 0000000..c14d2b7 --- /dev/null +++ b/.github/workflows/release_dev.yml @@ -0,0 +1,23 @@ +name: Supervisely release +run-name: Supervisely ${{ github.repository }} app release +on: + push: + branches-ignore: + - main + - master +jobs: + Supervisely-Release: + uses: supervisely-ecosystem/workflows/.github/workflows/common.yml@master + secrets: + SUPERVISELY_API_TOKEN: "${{ secrets.SUPERVISELY_PROD_API_TOKEN }}" + GH_ACCESS_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + with: + SUPERVISELY_SERVER_ADDRESS: "${{ vars.SUPERVISELY_PROD_SERVER_ADDRESS }}" + SLUG: "${{ github.repository }}" + RELEASE_VERSION: "${{ github.ref_name }}" + RELEASE_TITLE: "${{ github.ref_name }} branch release" + IGNORE_SLY_RELEASES: 1 + RELEASE_WITH_SLUG: 1 + CHECK_PREV_RELEASES: 0 + SUBAPP_PATHS: "__ROOT_APP__" + \ No newline at end of file