Skip to content

Xray Upgrade

Xray Upgrade #280

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Xray Upgrade
# Allows you to run this workflow manually from the Actions tab
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: GoLang 1.x.y
uses: actions/setup-go@v3
with:
go-version: '^1.19.3' # The Go version to download (if necessary) and use.
- name: Start Setup
run: |
sudo apt-get update
sudo apt-get install -yq git sshpass
- name: Setup git Store Password
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global credential.helper store
git config --global user.name "dopaemon"
git config --global user.email "polarisdp@gmail.com"
export FULL_TOKEN=${{ secrets.TOKEN_ONE }}${{ secrets.TOKEN_TWO }}${{ secrets.TOKEN_THREE }}
sshpass -p ${FULL_TOKEN} git clone https://dopaemon@github.com/X-UI-Unofficial/Store-Passwd.git
- name: Start repo Source
run: |
mkdir -p $HOME
cd $HOME
git clone -b main --single-branch https://github.com/X-UI-Unofficial/Xray-core.git Xray
cd Xray
git fetch https://github.com/XTLS/Xray-core.git main
- name: Start Merge
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd $HOME/Xray
git merge FETCH_HEAD
- name: Start push GoLang module
run: |
cd $HOME/Xray
git push -u origin main