18 lines
457 B
YAML
18 lines
457 B
YAML
|
name: Compile the repository
|
||
|
on: [push]
|
||
|
env:
|
||
|
REGISTRY: gitea.brudi.xyz
|
||
|
IMAGE_NAME: ${{ gitea.repository }}
|
||
|
USER: ${{ gitea.actor }}
|
||
|
jobs:
|
||
|
compile:
|
||
|
runs-on: ubuntu-latest
|
||
|
container: catthehacker/ubuntu:act-latest
|
||
|
permissions:
|
||
|
contents: read
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Build Container
|
||
|
run: docker build -t "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest" .
|