Add changelog for 1.0.0 #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / PublishInvalid workflow file
|
||
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 }} |