Skip to content

Commit

Permalink
docker build bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
gicastel authored Jul 29, 2024
1 parent e7c9b6b commit 0d02e27
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/main.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,20 @@ jobs:
file: standalone.dockerfile
pull: true
push: false
tags: tandalone, standalone-latest, standalone-${{ github.ref_name }}
tags: standalone, standalone-latest, standalone-${{ github.ref_name }}

build-docker-bundle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check out code

- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: bundle.dockerfile
pull: true
push: false
tags: bundle, bundle-latest, bundle-${{ github.ref_name }}

0 comments on commit 0d02e27

Please sign in to comment.