mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2026-02-06 18:20:17 +00:00
Bumps the github-actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
778 B
YAML
32 lines
778 B
YAML
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: 2022 Carles Fernandez-Prades <carles.fernandez@cttc.es>
|
|
on:
|
|
push:
|
|
paths:
|
|
- CITATION.cff
|
|
pull_request:
|
|
paths:
|
|
- CITATION.cff
|
|
workflow_dispatch:
|
|
|
|
name: CITATION.cff
|
|
jobs:
|
|
Validate-CITATION-cff:
|
|
runs-on: ubuntu-latest
|
|
name: Validate CITATION.cff
|
|
env:
|
|
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Validate CITATION.cff
|
|
uses: dieghernan/cff-validator@main
|
|
# Upload artifact in case of failure
|
|
- name: Update artifact
|
|
uses: actions/upload-artifact@v6
|
|
if: failure()
|
|
with:
|
|
name: citation-cff-errors
|
|
path: citation_cff_errors.md
|