disable docker and release workflow

This commit is contained in:
cwilvx
2025-05-08 21:07:34 +03:00
parent 2c6ec2952b
commit f1aa723cb9
+4 -1
View File
@@ -209,6 +209,7 @@ jobs:
release: release:
name: Create New Release name: Create New Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: false
needs: [build] needs: [build]
permissions: write-all permissions: write-all
steps: steps:
@@ -231,11 +232,13 @@ jobs:
bodyFile: .github/changelog.md bodyFile: .github/changelog.md
makeLatest: ${{ inputs.is_latest }} makeLatest: ${{ inputs.is_latest }}
docker: docker:
name: Build and push Docker image name: Build and push Docker image
runs-on: ubuntu-latest runs-on: ubuntu-latest
# needs: build # needs: build
permissions: write-all permissions: write-all
if: inputs.build_docker == 'true' # if: inputs.build_docker == 'true'
if: false
steps: steps:
- name: Checkout into repo - name: Checkout into repo
uses: actions/checkout@v3 uses: actions/checkout@v3