diff options
author | yuuko <yuuko@partyvan.io> | 2024-08-25 14:26:48 -0700 |
---|---|---|
committer | yuuko <yuuko@partyvan.io> | 2024-08-25 14:37:35 -0700 |
commit | 2b2802fc59798480872b9e03b5c2187394c6fbc6 (patch) | |
tree | de16f41d1e99647e27f33e7982908f4ecac8efce /.github | |
parent | a5b0ca64d425610ba3a6c51d1ccfe3983ab09dd1 (diff) |
treewide: nuke vendoring, make -> ambuild
“GOODBYE DIRT” -derek bum
Diffstat (limited to '.github')
-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
|