Skip to content

chore(master): release 1.3.0 (auto-release) #38

chore(master): release 1.3.0 (auto-release)

chore(master): release 1.3.0 (auto-release) #38

# Copyright 2023 Circle Internet Financial, LTD. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://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: CIRCLE-PUBLIC-GITHUB-WORKFLOWS Pipeline
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
lint-actions:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/actions-lint.yaml
pr-scan:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/pr-scan.yaml
conventional-commit-release:
uses: ./.github/workflows/conventional-commit-release.yaml
with:
release_type: simple
additional_unqualified_tags: true
extra_tags: stable
secrets:
RELEASE_TOKEN: ${{ secrets.PUBLIC_RELEASES_TOKEN }}
RELEASE_ACTOR_GPG_PRIVATE_KEY: ${{ secrets.PUBLIC_RELEASES_GPG_PRIVATE_KEY }}
RELEASE_ACTOR_GPG_PASSPHRASE: ${{ secrets.PUBLIC_RELEASES_GPG_PASSPHRASE }}
attach-assets:
uses: ./.github/workflows/attach-release-assets.yaml
needs:
- conventional-commit-release
if: needs.conventional-commit-release.outputs.release_created == 'true'
with:
release_tag: ${{ needs.conventional-commit-release.outputs.release_tag }}