Compare commits
40 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 43263e763e | |||
| e986fdbc08 | |||
| b7787933db | |||
|
|
bd3c59397e | ||
|
|
51c68269cb | ||
|
|
a5b12c5bff | ||
|
|
86ab6830cc | ||
|
|
adf6320169 | ||
|
|
ab01d4ddc3 | ||
|
|
ec87ebf310 | ||
|
|
ecbaa4f7e7 | ||
|
|
cbad68ecec | ||
|
|
2b33ee129e | ||
|
|
0068dd9dff | ||
|
|
c333719477 | ||
|
|
69e8afd5be | ||
|
|
bd5a7d1060 | ||
|
|
2aa1ab3931 | ||
|
|
c35c96f1aa | ||
|
|
cfafead533 | ||
|
|
b0183d3cfa | ||
|
|
5857df82ef | ||
| 936f911bb0 | |||
|
|
2e62a5b1cc | ||
|
|
a59f98902c | ||
|
|
b18e4d3177 | ||
|
|
f570d2ba90 | ||
|
|
dfca3440d2 | ||
|
|
abd78c2b2c | ||
|
|
fa23abebd7 | ||
|
|
56edae3e4d | ||
|
|
ae2baaa8f9 | ||
|
|
ceaf5ba08f | ||
|
|
2f8a4f43b0 | ||
|
|
b70d0a975c | ||
|
|
3872573d66 | ||
|
|
d7b6d14cf8 | ||
|
|
fcc010a1cf | ||
|
|
5f33782863 | ||
|
|
f3999308cc |
1 changed files with 25 additions and 0 deletions
25
.github/workflows/ci.yaml
vendored
Normal file
25
.github/workflows/ci.yaml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
name: ci
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
jobs:
|
||||||
|
build_and_publish:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
- run: npm install
|
||||||
|
- run: sudo apt update && sudo apt install -y tar
|
||||||
|
- run: export NODE_OPTIONS=--openssl-legacy-provider
|
||||||
|
- run: npm run build
|
||||||
|
- run: tar cvzf keanu-weblite.tar.gz dist/*
|
||||||
|
- run: |
|
||||||
|
curl -H "Authorization: token ${{ secrets.PACKAGE_TOKEN }}" -X DELETE "https://guardianproject.dev/api/packages/butter/generic/keanu-weblite/latest"
|
||||||
|
- run: |
|
||||||
|
curl -H "Authorization: token ${{ secrets.PACKAGE_TOKEN }}" -X PUT --upload-file keanu-weblite.tar.gz https://guardianproject.dev/api/packages/butter/generic/keanu-weblite/latest/keanu-weblite.tar.gz
|
||||||
Loading…
Add table
Add a link
Reference in a new issue