Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaguilar committed Sep 23, 2023
0 parents commit 4b40ba8
Show file tree
Hide file tree
Showing 10 changed files with 1,629 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
pull_request:
branches:
- master
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- run: pip install docker
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Log in to registry
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin

- name: release
run: |
make release
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
.vscode
Loading

0 comments on commit 4b40ba8

Please sign in to comment.