Skip to content

Commit 4092d62

Browse files
committed
feat: add REX_PRE_LOAD variable; fix build/dev commands
1 parent c9fdb52 commit 4092d62

23 files changed

+672
-48
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
.github
2020
.vscode
2121
**/*.md
22+
.env
2223

2324
# docker
2425
.dockerignore

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
REX_SECRET=1234567890
2+
REX_SCRIPT_PATH=./test_scripts
3+
REX_PORT=3000

.github/workflows/publish.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
# SETUP
17-
- uses: actions/checkout@v2
18-
- uses: docker/setup-qemu-action@v2
19-
- uses: docker/setup-buildx-action@v2
20-
- uses: docker/login-action@v2
17+
- uses: actions/checkout@v5
18+
- uses: docker/setup-qemu-action@v3
19+
- uses: docker/setup-buildx-action@v3
20+
- uses: docker/login-action@v3
2121
with:
2222
username: mauricenino
2323
password: ${{ secrets.DOCKERHUB_TOKEN }}
24-
- uses: docker/login-action@v2
24+
- uses: docker/login-action@v3
2525
with:
2626
registry: ghcr.io
2727
username: ${{ github.repository_owner }}
2828
password: ${{ secrets.GITHUB_TOKEN }}
29-
- uses: actions/setup-node@v3
29+
- uses: actions/setup-node@v6
3030
with:
31-
node-version: '18.x'
31+
node-version: '24.x'
3232
cache: 'yarn'
3333
- env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -38,7 +38,7 @@ jobs:
3838
[ ! -z "${package_version}" ] || exit 1
3939
4040
# DEPLOY
41-
- uses: docker/metadata-action@v4
41+
- uses: docker/metadata-action@v5
4242
id: meta
4343
with:
4444
images: |
@@ -58,7 +58,7 @@ jobs:
5858
type=ref,event=branch,enable=${{ github.ref_name != 'main' }}
5959
type=sha
6060
61-
- uses: docker/build-push-action@v4
61+
- uses: docker/build-push-action@v6
6262
with:
6363
context: .
6464
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8

.pnp.cjs

Lines changed: 282 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
4.43 MB
Binary file not shown.
4.12 MB
Binary file not shown.
4.13 MB
Binary file not shown.
4.38 MB
Binary file not shown.
4.29 MB
Binary file not shown.
4.45 MB
Binary file not shown.

0 commit comments

Comments
 (0)