ts3proxy-docker-build/.gitea/workflows/build.yml
Radim Lipovčan ffd124f9e7
Some checks failed
Build ts3proxy / Explore-Gitea-Actions (push) Successful in 4s
Build ts3proxy / login (push) Failing after 11s
Aktualizovat .gitea/workflows/build.yml
2023-11-17 15:51:34 +01:00

29 lines
935 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 | Clone repository
run: |
ls -lah
git clone https://github.com/Kandru/ts3proxy.git
cd ts3proxy
mv ../Dockerfile .
ls -lah
login:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
image: catthehacker/ubuntu:act-latest
uses: docker/login-action@v3
with:
username: Ownercz
password: ${{ secrets.dockerhub_gitea_token }}