Skip to content

Add changelog for 1.0.0 #37

Add changelog for 1.0.0

Add changelog for 1.0.0 #37

Workflow file for this run

name: Publish
on:
push:
tags:
- '**'
permissions:
contents: write
packages: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
concurrency:
group: ${{ github.ref_name }}
jobs:
ensure-tag-is-on-main:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
with:
ref: main
fetch-depth: 0
- run: exit $(git merge-base --is-ancestor $GITHUB_REF_NAME HEAD)
jvm-maven-github:
runs-on: macos-14-xlarge
needs: [ ensure-tag-is-on-main ]
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/runGradleTask
with:
preTaskString: -Pversion=$GITHUB_REF_NAME
task: library:publishAllPublicationsToGithubPackagesRepository
create-github-release:
runs-on: ubuntu-22.04
needs: [ ensure-tag-is-on-main ]
steps:
- uses: actions/[email protected]
- run: .scripts/github/release.sh > upload_url
- uses: actions/[email protected]
with:
name: upload_url
path: upload_url
attach-xcframework-to-github-release:
runs-on: macos-14-xlarge
needs: [ create-github-release, generate-build-matrix ]

Check failure on line 43 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Publish

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 43, Col: 37): Job 'attach-xcframework-to-github-release' depends on unknown job 'generate-build-matrix'.
strategy:
fail-fast: false
matrix:
xcodeversion: [ 14.3.1, 15.0.1, 15.1, 15.2, 15.3 ]
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/attachXcFrameworkAndChecksum
with:
target: ${{ github.ref_name }}
xcodeversion: ${{ matrix.xcodeversion }}