Skip to content

Commit

Permalink
ci: add workflow that always runs
Browse files Browse the repository at this point in the history
  • Loading branch information
SilenLoc committed Feb 13, 2024
1 parent c3ec630 commit c368cc5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Create github release

permissions:
contents: write

on:
push:
- [ main ]

jobs:
test-and-create-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: [email protected],[email protected],just@1,hurl@4,[email protected]

- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}

- run: just verify
- name: create docker images
working-directory: ./distributions
run: |
just build-docker-image ${{ github.sha }}
just push-docker

0 comments on commit c368cc5

Please sign in to comment.