Skip to content

Commit

Permalink
Merge pull request #2 from ux-stack/feature/sus
Browse files Browse the repository at this point in the history
feat: added base of document
  • Loading branch information
euskadi31 committed Feb 27, 2023
2 parents d9ab95b + b0636a2 commit c3d4117
Show file tree
Hide file tree
Showing 30 changed files with 888 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ end_of_line = lf

[Makefile]
indent_style = tab

[*.yml]
indent_size = 2
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: xu-cheng/texlive-action/full@v1
with:
run: |
apk add make
make build
#- uses: xu-cheng/latex-action@v2
# with:
# root_file: "src/*.tex"
# work_in_root_file_dir: './src'

- uses: actions/upload-artifact@v3
with:
path: build/sus-fr.pdf

- uses: actions/upload-artifact@v3
with:
path: build/sus-es.pdf

- uses: actions/upload-artifact@v3
with:
path: build/sus-de.pdf

- uses: actions/upload-artifact@v3
with:
path: build/sus-en.pdf
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: xu-cheng/texlive-action/full@v1
with:
run: |
apk add make
make build
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
build/sus-*.pdf
LICENSE
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
*.pdf
.DS_Store
build/
*.fls
*.fdb_latexmk
*.synctex.gz
!src/assets/uxstack-logo.pdf
Loading

0 comments on commit c3d4117

Please sign in to comment.