Skip to content

Release draft

Release draft #28

Workflow file for this run

name: release
on:
push:
branches: ["release"]
env:
LC_ALL: en_US.UTF-8
REPOSITORY_USERNAME: ${{ secrets.REPOSITORY_USERNAME }}
REPOSITORY_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
jobs:
build:
name: build on OpenJDK Linux
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: hydraulic-software/conveyor/actions/[email protected]
with:

Check failure on line 19 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
signing_key: ${{ secrets.SIGNING_KEY }}
agree_to_license: 1
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- shell: bash
run: ./gradlew --parallel release
- if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: test-reports
path: '*/target/*reports/tests/'
- shell: bash
run: cd org.alloytools.alloy.dist/conveyor;conveyor make site
- name: Release
uses: softprops/action-gh-release@v1
with:
prerelease: false
draft: true
files: |
org.alloytools.alloy.dist/conveyor/output
org.alloytools.alloy.dist/target/*.jar
*/target/reports