Skip to content

Commit

Permalink
build action
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaguilar committed Sep 15, 2023
1 parent 2557ed0 commit a52821e
Showing 1 changed file with 26 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 the statusreporter image

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

0 comments on commit a52821e

Please sign in to comment.