From d01dd079fce9f18f6a25af97005e464d7e6a9d6f Mon Sep 17 00:00:00 2001 From: Renan Souza Date: Mon, 13 Feb 2023 12:57:41 -0500 Subject: [PATCH] Fixing main publish --- .github/workflows/create-release-n-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-release-n-publish.yml b/.github/workflows/create-release-n-publish.yml index cb1c6a83..b81303d2 100644 --- a/.github/workflows/create-release-n-publish.yml +++ b/.github/workflows/create-release-n-publish.yml @@ -1,6 +1,6 @@ name: Release and Publish on: - push: + push: # It has to be push, otherwise error happens in code below. branches: [ "main" ] jobs: build: @@ -9,10 +9,10 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 - - name: Set up Python 3.10 + - name: Set up Python 3.8 uses: actions/setup-python@v3 with: - python-version: "3.10" + python-version: "3.8" - name: Get branch names id: branch-name uses: tj-actions/branch-names@v6