Some checks failed
Build ts3proxy / Explore-Gitea-Actions (push) Failing after 43s
28 lines
957 B
YAML
28 lines
957 B
YAML
name: Build ts3proxy
|
|
run-name: Build ts3proxy docker image
|
|
on: [push]
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Prepare | Setup git
|
|
run: |
|
|
git config --global user.name "Radim Lipovčan"
|
|
git config --global user.email "radim@lipovcan.cz"
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Build | Install Docker
|
|
run: |
|
|
apt-get update && apt-get install docker.io -y
|
|
- name: Build | Clone repository
|
|
run: |
|
|
ls -lah
|
|
git clone https://github.com/Kandru/ts3proxy.git
|
|
cd ts3proxy
|
|
mv ../Dockerfile .
|
|
ls -lah
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: Ownercz
|
|
password: ${{ secrets.dockerhub_gitea_token }} |