Skip to content

Commit

Permalink
build: add nightly build system
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsumara authored Oct 26, 2022
1 parent bf992ee commit 1467505
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build-nightly

on:
push:
branches:
- 'main'

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: ghcr.io/tatsumara/tatsumara.dev:nightly

0 comments on commit 1467505

Please sign in to comment.