7 Commits

Author SHA1 Message Date
Shaun Setlock
b5a1cb646a Triggering only on nvim file changes. 2025-05-03 20:39:27 -04:00
Shaun Setlock
0ee97a7c72 Modified comment in Actions workflow. 2025-05-03 20:31:13 -04:00
6b7ebb1f42 Merge pull request 'Modified triggers.' (#5) from feature/update_CICD_trigger into master
Reviewed-on: https://www.gitea.setlock.net/shaun/dotfiles/pulls/5
2025-05-03 19:54:27 -04:00
Shaun Setlock
35628b774f Modified triggers. 2025-05-03 19:53:44 -04:00
Shaun Setlock
30ed4f77f6 Simplifying triggers in Actions workflow.
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m53s
2025-05-03 17:08:44 -04:00
0635cad22e feature/implement_CI_CD_dotfiles#2 (#4)
Co-authored-by: Shaun Setlock <shaun@setlock.net>
Reviewed-on: https://www.gitea.setlock.net/shaun/dotfiles/pulls/4
2025-05-03 17:01:08 -04:00
bf228bf176 Created Actions workflow for nvim container build. (#3)
Co-authored-by: Shaun Setlock <shaun@setlock.net>
Reviewed-on: https://www.gitea.setlock.net/shaun/dotfiles/pulls/3
2025-05-03 16:46:11 -04:00

View File

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