jellyfin-discord-bot/.gitea/workflows/test-build.yaml

25 lines
853 B
YAML
Raw Normal View History

2023-06-24 02:00:56 +02:00
name: Build a docker image for node-jellyfin-role-bot
run-name: ${{ gitea.actor }} is building an image
on:
push:
env:
REGISTRY: gitea.brudi.xyz
IMAGE_NAME: ${{ gitea.repository }}
USER: ${{ gitea.actor }}
jobs:
build-docker-image:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
run: docker login -u ${{ env.USER }} -p ${{ secrets.TOKEN }} ${{ env.REGISTRY }}
- name: Build Container
2023-06-24 02:02:42 +02:00
run: echo "${{ env.VERSION }}" #docker build -t "${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}" .
2023-06-24 02:00:56 +02:00
env:
2023-06-24 02:08:26 +02:00
version: $(cat package.json | awk 'match($0, /version/) {print $2}' | sed 's/[\",]//g')