mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
19 lines
490 B
YAML
19 lines
490 B
YAML
on: create
|
|
|
|
name: Release
|
|
jobs:
|
|
release:
|
|
name: Release Codecov GitHub Action
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 3
|
|
- name: Release Action
|
|
uses: technote-space/release-github-actions@v1
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
CREATE_MINOR_VERSION_TAG: false
|
|
COMMIT_NAME: Release GitHub Action
|
|
BRANCH_NAME: master
|