Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zauguin committed Mar 19, 2024
0 parents commit 5e94654
Show file tree
Hide file tree
Showing 8 changed files with 2,707 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/create-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build container
on:
push:

jobs:
build:
name: Build image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- name: Build
id: build
uses: redhat-actions/buildah-build@v2
with:
image: get-tl-mirror-status
tags: ${{ github.ref-name }} ${{ github.sha }}
containerfiles: ./Containerfile
- name: Push image
uses: redhat-action/push-to-registry@v2
with:
image: ${{ steps.build.outputs.image }}
tags: ${{ steps.build.outputs.tags }}
registry: ghcr.io/zauguin
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 5e94654

Please sign in to comment.