Maximilian Keßler
b8b88d05a6
All checks were successful
Gitea Actions Demo / checkout (push) Successful in 21s
30 lines
788 B
YAML
30 lines
788 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
checkout:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: check out repo
|
|
uses: actions/checkout@v3
|
|
- name: list files
|
|
run: |
|
|
echo "In outer docker container:"
|
|
ls /workspace/testorg/ci-test
|
|
pwd
|
|
ls /home
|
|
echo "Docker images: $(docker images)"
|
|
echo "end outer print"
|
|
|
|
- name: compile
|
|
run: |
|
|
pdflatex main.tex
|
|
- name: prepare pages
|
|
run: |
|
|
mkdir public2
|
|
mv main.pdf main.log public2
|
|
- uses: actions/pages@14a96869a47768c9cf754f1181d0dcd4dd74564d
|
|
with:
|
|
directory: public2
|
|
index-title: 'Just a CI test'
|