fix: push new tags to extensions #9
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: Push new tagged version | ||
on: # yamllint disable-line rule:truthy | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
# Pattern matched against refs/tags | ||
tags: | ||
- '*' | ||
jobs: | ||
set-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set version variable | ||
run: | | ||
version=$(cat scripts/version.sh | grep 'CODECOV_WRAPPER_VERSION=' | cut -d\" -f2) | ||
echo "CODECOV_WRAPPER_VERSION=$version" >> $GITHUB_ENV | ||
bitrise-step: | ||
needs: set-version | ||
uses: ./.github/workflows/push-tag.yml | ||
with: | ||
repository: "codecov/codecov-bitrise" | ||
version: "${{ env.CODECOV_WRAPPER_VERSION }}" | ||
Check failure on line 25 in .github/workflows/push-tag-to-extensions.yml GitHub Actions / Push new tagged versionInvalid workflow file
|