diff --git a/.forgejo/workflows/main.yaml b/.forgejo/workflows/main.yaml deleted file mode 100644 index 010cdea..0000000 --- a/.forgejo/workflows/main.yaml +++ /dev/null @@ -1,60 +0,0 @@ -on: [push] -jobs: - job: - runs-on: docker - container: - image: debian:bookworm - steps: - - name: Sort environment - run: env | sort - - - name: List event - run: cat "${GITHUB_EVENT_PATH}" - - - name: Set DNS - run: | - echo '${{vars.dns}}' > '/etc/resolv.conf' - cat '/etc/resolv.conf' - - - name: Update catalog - run: apt-get update - - - name: Install tools - run: | - apt-get install --assume-yes \ - 'git' \ - 'tree' \ - 'pandoc' \ - 'rsync' \ - - - name: Clone repository - run: git clone "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}" '.' - - - name: Browse workspace - run: tree -a "${GITHUB_WORKSPACE}" - - - name: Build - run: './build.sh' - - - name: Set output - run: mkdir 'out' - - - name: Timestamp index - run: echo "$(date)" > 'out/index.html' - - - name: Configure Delivery - run: | - mkdir --parents ~/.ssh - echo -n '${{secrets.cd}}' > ~/.ssh/id_ed25519 - chmod 600 ~/.ssh/id_ed25519 - sha256sum ~/.ssh/id_ed25519 - - - name: Test connection - run: ssh -o StrictHostKeyChecking=accept-new 'cd@de.tilde.link' -- hostname - - - name: Synchronize output - run: | - rsync \ - --archive \ - --verbose \ - 'out/' 'cd@de.tilde.link:/o/test/' diff --git a/build.sh b/build.sh index 2f8193e..b963aca 100755 --- a/build.sh +++ b/build.sh @@ -28,10 +28,10 @@ pandoc \ --number-sections \ --slide-level '3' \ --write 'revealjs' \ +--variable revealjs-url='/sw/revealjs/up' \ --variable slideNumber \ \ "${files[@]}" -#--variable revealjs-url='/sw/revealjs/up' \ }