Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create publish.yml #1

Merged
merged 6 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test
  • Loading branch information
jjworren authored Dec 12, 2023
commit d2f5bfcb0c0e26a6d2950509205bd4cf09ca1158
Empty file added .github/release.yml
Empty file.
27 changes: 13 additions & 14 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand All @@ -21,15 +21,14 @@ jobs:
uses: dante-ev/latex-action@master
with:
root_file: main.tex
# - name: Publish
# uses: dev-build-deploy/[email protected]
# with:
# # Path to the Release configuration file, defaults to .github/release.yml
# config: # optional, default is .github/release.yml
# # Multiline list of artifact names, uploaded as part of the current workflow run, to upload as a GitHub Release asset
# artifacts: # optional
# # Multiline list of files (paths) to upload as a GitHub Release asset
# files: # optional
# # Versioning scheme to apply
# versioning: calve

- name: Publish
uses: dev-build-deploy/[email protected]
with:
token: ${{ github.token }}
draft: true
# Multiline list of artifact names, uploaded as part of the current workflow run, to upload as a GitHub Release asset
artifacts: # optional
# Multiline list of files (paths) to upload as a GitHub Release asset
files: ./main.pdf
# Versioning scheme to apply
versioning: calver
Loading