Skip to content

Commit

Permalink
fix github action artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
nkraetzschmar committed Aug 25, 2021
1 parent 8798a18 commit 84efed6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
run: docker run -v "$PWD":/data build_env make
- uses: actions/upload-artifact@v2
with:
name: thesis
path: build/thesis.pdf
name: paper
path: build/paper.pdf

release:
name: release
Expand All @@ -29,9 +29,9 @@ jobs:
steps:
- uses: actions/download-artifact@v2
with:
name: thesis
name: paper

- uses: "marvinpinto/action-automatic-releases@v1.2.0"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
files: thesis.pdf
files: paper.pdf

0 comments on commit 84efed6

Please sign in to comment.