This repository has been archived on 2025-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
docker-almalinux-buildrunner/.gitea/workflows/deploy.yaml
Ben Vincent 213700bffa
Some checks failed
Deploy / build (pull_request) Has been cancelled
Build / build (pull_request) Failing after 35s
feat: initial commit
- add Makefile
- add gitea workflows
- add Dockerfile
2024-09-08 00:56:06 +10:00

38 lines
754 B
YAML

name: Deploy
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: almalinux-8
container:
image: docker:dind
options: --privileged
steps:
- name: Set up environment
run: |
apk add --no-cache make bash git nodejs
- name: Checkout code
uses: actions/checkout@v3
- name: Build Docker Image
run: |
make build
- name: Log in to Docker
env:
UPLOAD_USER: ${{ secrets.UPLOAD_USER }}
UPLOAD_PASS: ${{ secrets.UPLOAD_PASS }}
run: |
echo "$UPLOAD_PASS" | docker login --username=$UPLOAD_USER --password-stdin git.query.consul
- name: Push Docker Image
run: |
make push