-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aggiunto github workflow per buildare i file typst
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Build Typst documents | ||
on: [push, workflow_dispatch] | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build_typst_documents: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Build Typst documents | ||
uses: lvignoli/typst-action@main | ||
with: | ||
source_file: | | ||
algoritmi-di-crittografia/riassunto.typ | ||
- name: Upload PDF files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: PDFs | ||
path: | | ||
algoritmi-di-crittografia/riassunto.pdf | ||
- name: Get current date | ||
id: date | ||
run: echo "DATE=$(date +%Y-%m-%d_%H:%M)" >> $GITHUB_ENV | ||
- name: Create release | ||
uses: softprops/action-gh-release@v1 | ||
if: github.ref_type == 'tag' | ||
with: | ||
name: "${{ github.ref_name }} — ${{ env.DATE }}" | ||
files: | | ||
algoritmi-di-crittografia/riassunto.pdf |