Skip to content

Commit

Permalink
v0.4 big push
Browse files Browse the repository at this point in the history
  • Loading branch information
damaredayo committed Oct 21, 2023
1 parent f4893d4 commit 9d48817
Show file tree
Hide file tree
Showing 46 changed files with 5,895 additions and 1,777 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build and Push Docker Image

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/black-mesa:latest
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
.vscode

/target
/data

docker-compose.yml
Loading

0 comments on commit 9d48817

Please sign in to comment.