diff options
Diffstat (limited to '.github/workflows/docker_build.yml')
-rw-r--r-- | .github/workflows/docker_build.yml | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml deleted file mode 100644 index 6928f99..0000000 --- a/.github/workflows/docker_build.yml +++ /dev/null @@ -1,38 +0,0 @@ -'on':
- push:
- tags:
- - v*
-jobs:
- compile:
- name: Compile extension in docker
- runs-on: ubuntu-latest
- steps:
- - name: Check out the repo
- uses: actions/checkout@v2
- - name: Run the build process with Docker
- uses: addnab/docker-run-action@v3
- with:
- image: 'debian:11-slim'
- options: '-v ${{ github.workspace }}:/mnt/curl'
- run: |
- bash /mnt/curl/ci/_docker_script.sh
- - name: Zip packages
- run: |
- pwd
- ls -la
- pushd build
- 7za a -r sm-neocurl.zip scripting/ plugins/ extensions/
- ls -la
- pwd
- ls -la
- popd
- - name: Release
- uses: softprops/action-gh-release@v1
- if: startsWith(github.ref, 'refs/tags/')
- with:
- files: |
- ./build/sm-neocurl.zip
- fail_on_unmatched_files: true
- generate_release_notes: true
- # if: contains(github.ref, 'beta')
- # prerelease: true
|