We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It should be relatively easy to build Docker images using GitHub Actions, taken from https://docs.docker.com/build/ci/github-actions/share-image-jobs/ :
name: ci on: push: jobs: build: runs-on: ubuntu-latest steps: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build and export uses: docker/build-push-action@v6 with: tags: myimage:latest outputs: type=docker,dest=/tmp/myimage.tar - name: Upload artifact uses: actions/upload-artifact@v4 with: name: myimage path: /tmp/myimage.tar
If we automatically publish images, we also do not have to worry about maintaining (as much) documentation.
The text was updated successfully, but these errors were encountered:
qstokkink
Successfully merging a pull request may close this issue.
It should be relatively easy to build Docker images using GitHub Actions, taken from https://docs.docker.com/build/ci/github-actions/share-image-jobs/ :
If we automatically publish images, we also do not have to worry about maintaining (as much) documentation.
The text was updated successfully, but these errors were encountered: