3 Commits

Author SHA1 Message Date
Shaun Setlock
9e5b2def91 Removed unnecessary branch name in Actions workflow. 2025-05-03 17:00:50 -04:00
Shaun Setlock
b82db31e2c Removed unnecessary branch name in Actions workflow. 2025-05-03 16:56:42 -04:00
Shaun Setlock
5add7af8b0 Created Actions workflow for nvim container build. 2025-05-03 16:42:24 -04:00

View File

@@ -5,8 +5,10 @@ on:
push: push:
branches: branches:
- master - master
tags:
- "v*" # triggers when you push a tag like v1.0.0
paths: paths:
- "nvim/**" - "**/Dockerfile"
workflow_dispatch: # manual run button workflow_dispatch: # manual run button
@@ -25,8 +27,8 @@ jobs:
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: gitea.example.com registry: gitea.example.com
username: ${{ secrets.USER }} username: ${{ secrets.GITEA_USERNAME }}
password: ${{ secrets.TOKEN }} password: ${{ secrets.GITEA_TOKEN }}
- name: Extract Tag Name (if any) - name: Extract Tag Name (if any)
id: get_tag id: get_tag