Skip to content

Commit

Permalink
Add artifact Action
Browse files Browse the repository at this point in the history
  • Loading branch information
0152la committed Mar 6, 2024
1 parent 32874c2 commit c3bd3bf
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: artifact

on:
workflow_dispatch:
push:
branches:
- master

jobs:
build:
name: Make PDF Artifact
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Get LibreOffice
run: |
sudo apt update
sudo apt install libreoffice
- name: Make artifact
run: soffice --convert-to pdf poster.odg
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: poster.pdf
path: poster.pdf
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

Binary file modified poster.odg
Binary file not shown.

0 comments on commit c3bd3bf

Please sign in to comment.