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:
name: Create New Release
runs-on: ubuntu-latest
if: false
needs: [build]
permissions: write-all
steps:
@@ -231,11 +232,13 @@ jobs:
bodyFile: .github/changelog.md
makeLatest: ${{ inputs.is_latest }}
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
# needs: build
permissions: write-all
if: inputs.build_docker == 'true'
# if: inputs.build_docker == 'true'
if: false
steps:
- name: Checkout into repo
uses: actions/checkout@v3