This repository has been archived on 2024-02-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
teamcity-executors-test-task/.github/workflows/publish.yaml
Gleb Koval e09bf9e9f8
All checks were successful
Test Workflow / Lint and test library (push) Successful in 1m43s
Publish Workflow / Publish library (push) Successful in 2m7s
Round-trip integration tests (#3)
- Implement round-trip tests for some cases.
- Run tests in CI.

Reviewed-on: #3
2023-12-30 16:42:51 +00:00

50 lines
1.2 KiB
YAML

name: Publish Workflow
on:
push:
tags:
- v*
jobs:
publish:
name: Publish library
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
- name: Verify Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Setup AWS Credentials
run: |
mkdir ~/.aws
echo ${{ secrets.aws_config }} | base64 -d > ~/.aws/config
echo ${{ secrets.aws_credentials }} | base64 -d > ~/.aws/credentials
- name: Run checks
run: ./gradlew check
- name: Parse parameters
id: parse
run: |
export VERSION="$(echo ${{ github.ref_name }} | cut -c2-)"
echo "Parsed version: '$VERSION'"
echo "backup_version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Build
env:
BACKUP_VERSION: ${{ steps.parse.outputs.backup_version }}
run: ./gradlew shadowJar
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ShadowJAR
path: build/libs/*-all.jar