--- trunk/.github/workflows/release.yml 2024/08/29 12:36:37 616 +++ trunk/.github/workflows/release.yml 2024/09/07 14:57:22 630 @@ -1,4 +1,5 @@ name: Releases + on: push: branches: @@ -6,10 +7,11 @@ permissions: contents: write + deployments: write jobs: build: - if: github.repository_owner == 'onesoft-sudo' + if: github.repository_owner == 'onesoft-sudo' && github.ref == 'refs/heads/main' strategy: matrix: @@ -68,7 +70,7 @@ release: needs: [build] - if: github.repository_owner == 'onesoft-sudo' + if: github.repository_owner == 'onesoft-sudo' && github.ref == 'refs/heads/main' runs-on: ubuntu-latest steps: @@ -137,3 +139,9 @@ body: ${{ steps.auto_release.outputs.release_notes }} artifactContentType: application/x-gzip artifacts: ./sudobot-release-linux.tar.gz,./sudobot-release-darwin.tar.gz + + deploy-staging: + needs: [build, release] + if: github.repository_owner == 'onesoft-sudo' + uses: ./.github/workflows/staging.yml + secrets: inherit