ts3proxy-docker-build/.gitea/workflows/build.yml

28 lines
953 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-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 }}