-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create docker-build.yml #14
base: master
Are you sure you want to change the base?
Conversation
Enable pushing for testing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are the changes needed before merging after it's been tested.
|
||
on: | ||
push: | ||
branches: [ main, github-workflow-build ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove github-workflow-build
with: | ||
platforms: linux/amd64,linux/arm64,linux/arm/v7 | ||
tags: | | ||
activecm/passer:test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change test
to latest
name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
platforms: linux/amd64,linux/arm64,linux/arm/v7 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove any platforms that aren't working
First pass at a github action replacement for docker build.
Also tests building for arm7 and arm64.