Skip to content

Add WALG_UPLOAD_DISK_CONCURRENCY env (#504) #194

Add WALG_UPLOAD_DISK_CONCURRENCY env (#504)

Add WALG_UPLOAD_DISK_CONCURRENCY env (#504) #194

Workflow file for this run

name: Build latest image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Docker Login
uses: docker/login-action@v1
with:
registry: ${{ secrets.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
args: -p bugs -p unused --timeout=5m
- name: Build and push Docker image
run: |
export DOCKER_TAG=latest
make docker-build
make docker-push
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}