diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 4d3d42e..87035c8 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -5,9 +5,9 @@ on: workflow_dispatch: inputs: file_count: - description: 'Number of files to generate (controls build time)' + description: "Number of files to generate (controls build time)" required: false - default: '10000' + default: "10000" push: branches: - main @@ -17,6 +17,8 @@ on: jobs: build-and-package: runs-on: ubuntu-latest + env: + DOCKER_HOST: tcp://localhost:2376 steps: - name: Checkout source code uses: actions/checkout@v3 @@ -36,4 +38,4 @@ jobs: # We set a high file count to ensure the build takes a significant amount of time # to simulate a heavy workload in the CI system. build-args: | - FILE_COUNT=${{ inputs.file_count || '10000' }} \ No newline at end of file + FILE_COUNT=${{ inputs.file_count || '10000' }}