Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
739047e477 | |||
77dab0de04 | |||
31347764ae |
@ -86,12 +86,13 @@ jobs:
|
||||
- name: Build & push container image
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
context: .
|
||||
tags: code.spamasaurus.com/djpbessems/packer-extended:${{ needs.semrel_dryrun.outputs.version }}
|
||||
build-args: |
|
||||
REPO_USERNAME=${{ secrets.REPO_USERNAME }}
|
||||
REPO_PASSWORD=${{ secrets.REPO_PASSWORD }}
|
||||
context: .
|
||||
tags: code.spamasaurus.com/djpbessems/packer-extended:${{ needs.semrel_dryrun.outputs.version }}
|
||||
provenance: false
|
||||
push: true
|
||||
env:
|
||||
DOCKER_HOST: "tcp://docker:2376/"
|
||||
DOCKER_TLS_CERTDIR: "/certs"
|
||||
|
@ -1,3 +1,10 @@
|
||||
# [1.2.0](http://gitea.gitea.svc.cluster.local:3000/djpbessems/ContainerImage.PackerExtended/compare/v1.1.0...v1.2.0) (2024-06-06)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* Add unzip (required for packer action) ([3134776](http://gitea.gitea.svc.cluster.local:3000/djpbessems/ContainerImage.PackerExtended/commit/31347764ae36478ddbb89735656cb044e6931276))
|
||||
|
||||
# [1.1.0](http://gitea.gitea.svc.cluster.local:3000/djpbessems/ContainerImage.PackerExtended/compare/v1.0.0...v1.1.0) (2024-06-06)
|
||||
|
||||
|
||||
|
@ -44,6 +44,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
locales \
|
||||
make \
|
||||
netcat-openbsd \
|
||||
# (npm) Dependency for Gitea Actions
|
||||
npm \
|
||||
openssh-client \
|
||||
powershell-lts \
|
||||
@ -55,6 +56,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
qemu-utils \
|
||||
# (sshpass) Dependency for Packer (non-interactive password authentication)
|
||||
sshpass \
|
||||
# (unzip) Dependency for Gitea Actions
|
||||
unzip \
|
||||
# (xorriso) Dependency for Packer (generating isofs image)
|
||||
xorriso \
|
||||
yamllint && \
|
||||
|
Reference in New Issue
Block a user