Skip to content

Bump astro from 6.1.7 to 7.0.9 in /pages #364

Bump astro from 6.1.7 to 7.0.9 in /pages

Bump astro from 6.1.7 to 7.0.9 in /pages #364

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
# SPDX-FileCopyrightText: 2025-2026 Kaito Udagawa <umireon@kaito.tokyo>
#
# SPDX-License-Identifier: Apache-2.0
name: Plugin CI
# file: .github/workflows/plugin.yml
# author: Kaito Udagawa <umireon@kaito.tokyo>
# version: 1.1.2
# date: 2026-04-17
on:
pull_request:
branches: [main]
push:
branches: [main]
tags: ["*"]
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-windows:
permissions:
contents: read
uses: ./.github/workflows/plugin-build-windows.yml
with:
environment: ${{ github.event_name == 'push' && 'production-windows' || '' }}
VCPKG_BINARY_SOURCES: 'clear;http,https://vcpkg-obs.kaito.tokyo/{name}/{version}/{sha}'
vcpkg-version: '2025.08.27'
build-macos:
permissions:
contents: read
uses: ./.github/workflows/plugin-build-macos.yml
with:
environment: ${{ github.event_name == 'push' && 'production-macos' || '' }}
VCPKG_BINARY_SOURCES: 'clear;http,https://vcpkg-obs.kaito.tokyo/{name}/{version}/{sha}'
vcpkg-version: '2025.08.27'
codesign-enabled: ${{ github.event_name == 'push' }}
secrets: inherit
build-ubuntu:
permissions:
contents: read
uses: ./.github/workflows/plugin-build-ubuntu.yml
with:
environment: ${{ github.event_name == 'push' && 'production-ubuntu' || '' }}
VCPKG_BINARY_SOURCES: 'clear;http,https://vcpkg-obs.kaito.tokyo/{name}/{version}/{sha}'
vcpkg-version: '2025.08.27'
accept-plugin:
name: Accept Plugin CI
needs: [build-windows, build-macos, build-ubuntu]
runs-on: ubuntu-slim
permissions: {}
steps:
- name: Accept plugin
run: |
echo 'The workflow Plugin CI has completed successfully.'
create-release:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
needs: [build-windows, build-macos, build-ubuntu]
permissions:
artifact-metadata: write
attestations: write
contents: write
id-token: write
uses: ./.github/workflows/plugin-create-release.yml
with:
environment: production-release