Some updates

This commit is contained in:
itdoginfo
2024-10-12 14:17:12 +03:00
parent 9297328e37
commit 98b2ce1cb7
6 changed files with 71 additions and 74 deletions

View File

@@ -1,28 +1,26 @@
name: Test Build
name: Build packages
on:
push:
branches:
- main
tags:
- v*
jobs:
build:
name: test build
name: Build podkop and luci-app-podkop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.1
- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v6.9.0
with:
context: .
tags: podkop:0.1
tags: podkop:ci
- name: Create Docker container
run: docker create --name podkop podkop:0.1
run: docker create --name podkop podkop:ci
- name: Copy file from Docker container
run: docker cp podkop:/builder/bin/packages/x86_64/utilites ./bin/
@@ -30,13 +28,7 @@ jobs:
- name: Remove Docker container
run: docker rm podkop
# - name: Upload copied file as artifact
# uses: actions/upload-artifact@v4.4.3
# with:
# name: packages
# path: ./bin/*.ipk
- name: Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v2.0.8
with:
files: ./bin/*.ipk

View File

@@ -1,7 +1,8 @@
FROM openwrt/sdk:x86_64-v23.05.5
RUN mkdir -p /builder/package/feeds/utilites/
RUN ./scripts/feeds update -a && mkdir -p /builder/package/feeds/utilites/ && mkdir -p /builder/package/feeds/luci/
COPY ./podkop /builder/package/feeds/utilites/podkop
COPY ./luci-app-podkop /builder/package/feeds/luci/luci-app-podkop
RUN make defconfig && make package/podkop/compile V=s -j4
RUN make defconfig && make package/podkop/compile && make package/luci-app-podkop/compile V=s -j4

View File

@@ -4,7 +4,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-podkop
PKG_VERSION:=1.0.1
PKG_VERSION:=0.1.0
PKG_RELEASE:=1
LUCI_TITLE:=LuCI podkop app

View File

@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=podkop
PKG_VERSION:=1.0.3
PKG_VERSION:=0.1.0
PKG_RELEASE:=1
PKG_MAINTAINER:=ITDog <podkop@itdog.info>

View File

@@ -1,25 +1,29 @@
{
"log": {
"level": "warn"
},
"inbounds": [
{
"type": "tproxy",
"listen": "::",
"listen_port": 1602,
"sniff": false
}
],
"outbounds": [
{
"type": "shadowsocks",
"server": "$HOST",
"server_port": "$PORT",
"method": "$METHOD",
"password": "$PASS"
}
],
"route": {
"auto_detect_interface": true
"log": {
"level": "warn"
},
"inbounds": [
{
"type": "tproxy",
"listen": "::",
"listen_port": 1602,
"sniff": false
}
],
"outbounds": [
{
"type": "shadowsocks",
"server": "$HOST",
"server_port": "$PORT",
"method": "$METHOD",
"password": "$PASS",
"udp_over_tcp": {
"enabled": true,
"version": 2
}
}
],
"route": {
"auto_detect_interface": true
}
}

View File

@@ -1,39 +1,39 @@
{
"log": {
"level": "warn"
},
"inbounds": [
{
"type": "tproxy",
"listen": "::",
"listen_port": 1602,
"sniff": false
}
],
"outbounds": [
{
"type": "vless",
"server": "$HOST",
"server_port": "$PORT",
"uuid": "$UUID",
"flow": "xtls-rprx-vision",
"tls": {
"log": {
"level": "warn"
},
"inbounds": [
{
"type": "tproxy",
"listen": "::",
"listen_port": 1602,
"sniff": false
}
],
"outbounds": [
{
"type": "vless",
"server": "$HOST",
"server_port": "$PORT",
"uuid": "$UUID",
"flow": "xtls-rprx-vision",
"tls": {
"enabled": true,
"insecure": false,
"server_name": "$FAKE_SERVER",
"utls": {
"enabled": true,
"insecure": false,
"server_name": "$FAKE_SERVER",
"utls": {
"enabled": true,
"fingerprint": "chrome"
},
"reality": {
"enabled": true,
"public_key": "$PUBLIC_KEY",
"short_id": "$SHORT_ID"
}
"fingerprint": "chrome"
},
"reality": {
"enabled": true,
"public_key": "$PUBLIC_KEY",
"short_id": "$SHORT_ID"
}
}
],
"route": {
"auto_detect_interface": true
}
],
"route": {
"auto_detect_interface": true
}
}