Update pypa/gh-action-pypi-publish digest to 3fbcf7c #406
Workflow file for this run
This file contains 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 bundle version matches git tag | ||
uses: sparta-science/[email protected] | ||
- uses: sparta-science/check-version-matches-tag@v1 | ||
with: | ||
plist-path: MyApp/Info.plist | ||
name: 'Check bundle version matches git tag' | ||
description: 'To build release based on tag and verify version has been set in Info.plist' | ||
inputs: | ||
plist-path: | ||
description: 'path to Info.plist file containing CFBundleShortVersionString' | ||
required: true | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Verify plist version | ||
run: ${{ github.action_path }}/check-version-matches-tag.sh ${{ inputs.plist-path }} | ||
shell: bash | ||
branding: | ||
icon: copy | ||
color: purple | ||