mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-21 00:42:43 +08:00
add docker for node vless
This commit is contained in:
36
.github/workflows/node-vless-docker.yml
vendored
Normal file
36
.github/workflows/node-vless-docker.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
name: k8s-app-build
|
||||
on:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 18.x
|
||||
- name: Run a multi-line script
|
||||
run: |
|
||||
npm install
|
||||
npm run node-vless:bunled
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
- name: Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
with:
|
||||
install: true
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
# context: ./temp11
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: zizifn/node-vless:latest
|
||||
Reference in New Issue
Block a user