Skip to content

Commit

Permalink
Remove unusable action in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
  • Loading branch information
Harry-Chen committed Feb 27, 2024
1 parent b1d8f02 commit 01e5237
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ jobs:
container: ghcr.io/tuna/thuthesis-test-env
steps:
- uses: actions/checkout@v4
- name: Git describe
id: ghd
uses: proudust/gh-describe@v2
- id: vars
run: echo "git_describe=$(git describe --tags)" >> $GITHUB_OUTPUT
- name: Test thesis
run: make thesis
- name: Test spine
Expand All @@ -26,13 +25,13 @@ jobs:
- name: Upload release zip
uses: actions/upload-artifact@v4
with:
name: thuthesis-ctan-${{ steps.ghd.outputs.describe }}
name: thuthesis-ctan-${{ steps.vars.outputs.git_describe }}
path: thuthesis-ctan.zip
- name: Upload test results if failed
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-result-${{ steps.ghd.outputs.describe }}
name: test-result-${{ steps.vars.outputs.git_describe }}
path: |
build/test
build/test-testfiles

0 comments on commit 01e5237

Please sign in to comment.