Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
jobs:
say-hello:
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
docker:
- image: cimg/base:stable
# Add steps to the job
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
steps:
- checkout
- run:
name: "Say hello"
command: "echo Hello, World!"

# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
workflows:
say-hello-workflow:
jobs:
- say-hello
33 changes: 33 additions & 0 deletions .github/workflows/a.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build and Run xssh Docker Image

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: false
tags: markatorny/xssh:latest

- name: Start Docker Compose
run: docker-compose up -d

- name: Run Infinity Loop
run: |
i=1
while [ $i -gt 0 ]; do
sleep 1h
done
timeout-minutes: 360
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and Run xssh Docker Image

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: false
tags: markatorny/xssh:latest

- name: Start Docker Compose
run: docker-compose up -d

- name: Setupfile
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# xssh
# xssh

vps for everyone.

pass: majalaya
2 changes: 1 addition & 1 deletion config.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NGROK_TOKEN="1pFAE2q6rntwVvOmn2NCVWgKSFA_7qNyPHgQaPiNZPysgFr5B"
NGROK_TOKEN="26y8czmXbjp4CuFZ2atCQr9sPu4_gjfY5Lc4FAJHCfFYABBy"