ts3proxy-docker-build/.gitea/workflows/build.yml
Radim Lipovčan a911f2e839
Some checks failed
Build ts3proxy / Explore-Gitea-Actions (push) Failing after 43s
Aktualizovat .gitea/workflows/build.yml
2023-11-17 15:58:04 +01:00

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 }}