Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterOdin authored Jul 19, 2023
1 parent ba9707b commit c7c0b4c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,21 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml

release-test:
name: Test release flow
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Prepare variables
id: prepare_variables
run: |
git fetch --tags --force
latest_tag=$(git describe --tags --abbrev=0)
echo "latest_tag=$(git describe --tags --abbrev=0)" >> "$GITHUB_ENV"
echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_ENV"
echo "tag_body=$(git tag -l ${latest_tag} --format='%(contents:body)')" >> "$GITHUB_ENV"
- run: echo "latest_tag is ${{ env.latest_tag }}"
- run: echo "Body is ${{ env.tag_body }}"

0 comments on commit c7c0b4c

Please sign in to comment.