Skip to content

Commit

Permalink
Simplify Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
outfrost committed Feb 14, 2024
1 parent 7736b83 commit 1114457
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,10 @@ jobs:
with:
fetch-depth: 0

# Job creates release under the same version as the tag
- name: Get version from tag
id: tag_version
run: |
echo ::set-output name=TAG_VERSION::${GITHUB_REF#refs/tags/v}
- name: Write version to version file
- name: Write tag version to version file
shell: bash
run: |
echo "${{ steps.tag_version.outputs.TAG_VERSION }}" > ./version.txt
echo "${GITHUB_REF#refs/tags/}" > ./version.txt
- name: Run pre-export script
run: ./pre_export.sh
Expand Down

0 comments on commit 1114457

Please sign in to comment.