runner-images/.forgejo/workflows/base.yml

31 lines
822 B
YAML
Raw Normal View History

2024-05-09 20:13:57 +00:00
name: "Build Runner Base"
2024-05-09 19:56:02 +00:00
on:
schedule:
- cron: '0 0 * * *'
2024-05-09 19:56:02 +00:00
push:
branches:
- 'master'
jobs:
build_act:
2025-01-29 15:12:30 +01:00
runs-on: 'docker'
container:
image: docker:27.5.1-alpine3.21
2024-05-09 19:56:02 +00:00
steps:
- name: Login to Registry
uses: 'https://git.euph.dev/actions/docker-login@v3'
with:
registry: git.euph.dev
username: ${{ secrets.DEPLOY_USER }}
password: ${{ secrets.DEPLOY_SECRET }}
- name: Build and push act base image
id: build_act_base
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
with:
context: "{{defaultContext}}:images/actions/act"
push: true
tags: |
git.euph.dev/actions/runner-basic:latest
2025-01-29 14:12:42 +01:00
git.euph.dev/actions/runner-basic:${{ forgejo.run_number }}