Skip to content

feat: 使用唯一编号标签策略 #10

feat: 使用唯一编号标签策略

feat: 使用唯一编号标签策略 #10

# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
# Copyright (c) 2022-2024 Contributors to the Eclipse Foundation
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
name: Build CCU vehicle-mock
on:
workflow_dispatch:
workflow_call:
push:
branches:
- main
paths:
- 'vehicle-mock/**'
- '.github/workflows/build-ccu-vehicle-mock*.yml'
permissions:
contents: read
deployments: write
packages: write
actions: write
checks: write
jobs:
get-app-name:
runs-on: ubuntu-22.04
name: Get App-Name
outputs:
app_name: ${{ steps.export-app-name.outputs.app_name }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get app-name
id: export-app-name
run: |
NAME="vehicle-mock"
echo "app_name=$NAME" >> $GITHUB_OUTPUT
build-image-arm64:
uses: ./.github/workflows/build-ccu-vehicle-mock-single.yml
needs: [get-app-name]
with:
platform: arm64
app_name: ${{ needs.get-app-name.outputs.app_name }}