11 lines
336 B
YAML
11 lines
336 B
YAML
image: alpine
|
|
command: |
|
|
apk add --no-cache curl jq unzip &&
|
|
curl -s 'https://git.freun.dev/api/v1/repos/repomaa/cv/actions/artifacts?name=build' | \
|
|
jq -r '.artifacts[-1].archive_download_url' | \
|
|
xargs -I {} curl -s -L -o artifact.zip {} &&
|
|
unzip -o artifact.zip -d public
|
|
public: public
|
|
domains:
|
|
- joakim.repomaa.com
|