Files
toolchain/.gitea/workflows/builder.yaml
RemiZOffAlex b164812927
Some checks failed
Build toolchain image / Builder (push) Has been cancelled
Debug
2024-08-23 07:30:25 +03:00

20 lines
718 B
YAML

name: Build toolchain image
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Builder:
runs-on: fedora-39
secrets:
access-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
steps:
# - uses: actions/checkout@v4
- run: pwd
- run: ls -la
- run: dnf -y update
- run: dnf -y install dnf-plugins-core
- run: dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
- run: dnf -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
- run: docker build --progress=plain --tag registry.r10x/toolchain .
- run: docker run --labels registry.r10x/toolchain buildbot