Skip to content

Create LICENSE

Create LICENSE #6

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
tags: v*.*
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: make build-in-docker
- uses: actions/upload-artifact@v3
with:
name: aws-java-sdk-v2-trust-certs-patch
path: build/libs/*
- name: Release binaries
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: build/libs/*
generate_release_notes: true
prerelease: ${{ endsWith(github.ref, '-pre') }}