Migrate to Forgejo Actions
Some checks failed
Build and Test / build-and-test (pull_request) Successful in 47s
Enable Auto Merge / auto-merge (pull_request) Failing after 1s
Publish Docker image / Push Docker image to GitHub Packages (push) Failing after 3s

This commit is contained in:
William Brawner 2024-06-17 21:32:11 -06:00
parent 534ebb8cce
commit 81c9de0268
Signed by: wbrawner
GPG key ID: 8FF12381C6C90D35
4 changed files with 4 additions and 13 deletions

View file

@ -11,12 +11,14 @@ jobs:
steps: steps:
- name: Check out the repo - name: Check out the repo
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install docker
uses: papodaca/install-docker-action@main
- name: Docker meta - name: Docker meta
id: meta id: meta
uses: docker/metadata-action@v4 uses: docker/metadata-action@v4
with: with:
images: | images: |
ghcr.io/wbrawner/trainterval git.wbrawner.com/wbrawner/trainterval
tags: | tags: |
type=schedule type=schedule
type=ref,event=branch type=ref,event=branch
@ -32,7 +34,7 @@ jobs:
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v2 uses: docker/login-action@v2
with: with:
registry: ghcr.io registry: git.wbrawner.com
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push - name: Build and push

View file

@ -1,11 +0,0 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"