aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/docker.yml (follow)
Commit message (Collapse)AuthorAgeFiles
* build(deps): bump docker/build-push-action from 5 to 6 (#155)dependabot[bot]2024-07-021
| | | | | | | | | | | | | | | Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Bump docker/build-push-action from 4 to 5 (#114)dependabot[bot]2023-11-081
|
* Bump docker/metadata-action from 4 to 5 (#113)dependabot[bot]2023-11-081
|
* Bump docker/login-action from 2 to 3 (#112)dependabot[bot]2023-11-081
|
* Bump docker/setup-buildx-action from 2 to 3 (#115)dependabot[bot]2023-11-081
|
* Bump actions/checkout from 3 to 4 (#110)dependabot[bot]2023-10-311
| | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* ci: Publish Docker image to ghcr.io on release (#82)Abhinav Gupta2023-04-211
Adds a workflow that builds and publishes a Docker image to ghcr.io based on the Dockerfile in the root of the repository. This will become available at https://github.com/uber-go/sally/pkgs/container/sally. Users will be able to import it by using `ghcr.io/uber-go/sally:$tag` with `docker pull` or in the `FROM` clause of their own Docker file. As a test for this, I published it manually to my own fork. The image is at https://github.com/abhinav/sally/pkgs/container/sally. With that, I ran the following Dockerfile: FROM ghcr.io/abhinav/sally:master COPY sally.yaml / And it worked as expected.