blog: add fluent-package v6.0.0 release announcement #57
Workflow file for this run
This file contains hidden or 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: Check tag files | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
tags: | |
runs-on: ubuntu-latest | |
name: Check tag files | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.4 | |
bundler-cache: true | |
- name: Check tag files are properly updated | |
run: | | |
bundle exec rake update_tags | |
git --no-pager diff --exit-code |