Update dependency @vueuse/core to v12.1.0 #703
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
pull_request: | |
branches: | |
- '*' | |
env: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
jobs: | |
Linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Build | |
uses: ./.github/actions/run-gradle | |
- name: Archive Open Test Reports | |
uses: ./.github/actions/archive-reports | |
if: ${{ always() }} | |
Windows: | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Build | |
uses: ./.github/actions/run-gradle | |
- name: Archive Open Test Reports | |
uses: ./.github/actions/archive-reports | |
if: ${{ always() }} | |
macOS: | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Build | |
uses: ./.github/actions/run-gradle | |
- name: Archive Open Test Reports | |
uses: ./.github/actions/archive-reports | |
if: ${{ always() }} | |
publish_artifacts: | |
name: Publish Snapshot Artifacts | |
needs: Linux | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.repository == 'ota4j-team/open-test-reporting' && (startsWith(github.ref, 'refs/heads/releases/') || github.ref == 'refs/heads/main') | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Publish | |
uses: ./.github/actions/run-gradle | |
env: | |
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }} | |
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }} | |
with: | |
arguments: publish -x check | |
update_documentation: | |
name: Deploy Schemas | |
needs: Linux | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.repository == 'ota4j-team/open-test-reporting' && github.ref == 'refs/heads/main' | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Configure Git | |
shell: bash | |
run: | | |
git config --global user.name "JUnit Team" | |
git config --global user.email "team@junit.org" | |
- name: Publish | |
uses: ./.github/actions/run-gradle | |
env: | |
GIT_USERNAME: git | |
GIT_PASSWORD: ${{ secrets.GH_TOKEN }} | |
with: | |
arguments: gitPublishPush |