Fix Malformed dir traversal (#331) #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Binaries | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'Makefile' | |
- 'config.json' | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Make WebP Server Go (amd64) | |
run: | | |
docker run --rm -w /app -v "$(pwd)":/app webpsh/libvips make | |
sudo chown -R $USER:$USER builds/ | |
sha256sum builds/webp-server-linux-amd64 > builds/webp-server-linux-amd64.sha256 | |
- name: Make WebP Server Go (arm64) | |
run: | | |
docker run --rm -w /app -v "$(pwd)":/app --platform linux/arm64 webpsh/libvips make | |
sudo chown -R $USER:$USER builds/ | |
sha256sum builds/webp-server-linux-arm64 > builds/webp-server-linux-arm64.sha256 | |
- name: Check for ldd version(AMD64 only) | |
run: | | |
ldd builds/webp-server-linux-amd64 | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: true | |
title: "WebP Server Go" | |
files: | | |
builds/webp-server-linux-amd64 | |
builds/webp-server-linux-amd64.sha256 | |
builds/webp-server-linux-arm64 | |
builds/webp-server-linux-arm64.sha256 |