Skip to content

Update build.yml

Update build.yml #11

Workflow file for this run

name: Build Thesis
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
# - name: Install TeX Live
# run: |
# sudo apt install -y texlive texlive-full
# - name: Build
# run: |
# make
- run: echo $(date +%Y_%m_%d_%H_%M)
- uses: ncipollo/release-action@v1
with:
allowUpdates: True
omitBody: True
tag: $(date +%Y_%m_%d_%H_%M)
artifacts: "Makefile"
token: ${{ secrets.GITHUB_TOKEN }}