1 Commits

Author SHA1 Message Date
Shaun Setlock
dcc52c38d3 Moving container to its own directory; not just a nvim thing. Added a nightly workflow. Switched to tags trigger.
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m56s
2025-05-06 20:30:52 -04:00

View File

@@ -3,12 +3,12 @@ name: Build and Push Docker Image
on: on:
schedule: schedule:
- cron: "0 2 * * *" - cron: "30 20 * * *"
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build-amd: build-and-push:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@@ -33,29 +33,3 @@ jobs:
platforms: linux/amd64 platforms: linux/amd64
tags: | tags: |
gitea.setlock.net/shaun/dev-container:nightly gitea.setlock.net/shaun/dev-container:nightly
build-arm:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: gitea.setlock.net
username: ${{ secrets.USER }}
password: ${{ secrets.TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
context: ./tools
push: true
platforms: linux/arm64
tags: |
gitea.setlock.net/shaun/dev-container:nightly