Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
feat: enable manually running build
Browse files Browse the repository at this point in the history
  • Loading branch information
xynydev committed Mar 4, 2023
1 parent 85e4343 commit 2521741
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@ on:
branches:
- main
paths-ignore:
- '**.md'
- '**.txt'
- "**.md"
- "**.txt"
schedule:
- cron: '20 20 * * *' # 8:20pm everyday
- cron: "20 20 * * *" # 8:20pm everyday
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.txt'
- "**.md"
- "**.txt"
workflow-dispatch:

env:
IMAGE_BASE_NAME: base
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}
IMAGE_BASE_NAME: base
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}

jobs:
push-ghcr:
Expand All @@ -35,7 +37,7 @@ jobs:
- major_version: 37
is_latest_version: true
is_stable_version: true
steps:
steps:
# Checkout push-to-registry action GitHub repository
- name: Checkout Push to Registry action
uses: actions/checkout@v3
Expand Down

0 comments on commit 2521741

Please sign in to comment.