Home

jolheiser.com @7773f9a141ac2f6458306cb2a1c4aeeabd9a7017 - refs - log -
-
https://git.jolheiser.com/jolheiser.com.git
my website
jolheiser.com / .woodpecker.yml
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
pipeline:
  build:
    image: node:20
    commands:
      - yarn install
      - yarn build
      - tar -czf dist.tar.gz dist
    when:
      event: push
      branch: main
  release:
    image: jolheiser/drone-gitea-main
    settings:
      base: https://git.jojodev.com
      token:
        from_secret: gitea_token
      files: dist.tar.gz
    when:
      event: push
      branch: main