txtdot/.github/workflows/deploy.yml

54 lines
2.6 KiB
YAML
Raw Normal View History

2023-09-13 11:30:37 +03:00
#
name: Create and publish a Docker image
# Configures this workflow to run every time a change is pushed to the branch called `release`.
2023-09-13 11:31:39 +03:00
on:
push:
branches:
- main
Fix dependabot (#95) * Build(deps): Bump linkedom from 0.16.6 to 0.16.8 (#89) Bumps [linkedom](https://github.com/WebReflection/linkedom) from 0.16.6 to 0.16.8. - [Commits](https://github.com/WebReflection/linkedom/compare/v0.16.6...v0.16.8) --- updated-dependencies: - dependency-name: linkedom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Build(deps-dev): Bump @typescript-eslint/parser from 6.18.0 to 7.1.0 (#88) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 6.18.0 to 7.1.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.1.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development 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> * Build(deps): Bump @fastify/swagger from 8.13.0 to 8.14.0 (#87) Bumps [@fastify/swagger](https://github.com/fastify/fastify-swagger) from 8.13.0 to 8.14.0. - [Release notes](https://github.com/fastify/fastify-swagger/releases) - [Commits](https://github.com/fastify/fastify-swagger/compare/v8.13.0...v8.14.0) --- updated-dependencies: - dependency-name: "@fastify/swagger" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Build(deps): Bump @fastify/view from 8.2.0 to 9.0.0 (#86) Bumps [@fastify/view](https://github.com/fastify/point-of-view) from 8.2.0 to 9.0.0. - [Release notes](https://github.com/fastify/point-of-view/releases) - [Commits](https://github.com/fastify/point-of-view/compare/v8.2.0...v9.0.0) --- updated-dependencies: - dependency-name: "@fastify/view" 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> * Build(deps-dev): Bump @types/node from 20.10.6 to 20.11.20 (#85) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.6 to 20.11.20. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * ci: fix dependabot branches and create packages in dev * fix: version link in index * dep: update eslint-plugin --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-04 11:10:37 +03:00
- dev
2023-09-21 10:13:05 +03:00
release:
types:
- published
2023-09-13 11:30:37 +03:00
# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
jobs:
build-and-push-image:
runs-on: ubuntu-latest
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
permissions:
contents: read
packages: write
2024-05-12 16:24:50 +03:00
2023-09-13 11:30:37 +03:00
steps:
- name: Checkout repository
2024-05-12 17:46:13 +03:00
uses: actions/checkout@v4
2023-09-13 11:30:37 +03:00
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
- name: Log in to the Container registry
2024-05-12 17:46:13 +03:00
uses: docker/login-action@v3
2023-09-13 11:30:37 +03:00
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
- name: Extract metadata (tags, labels) for Docker
id: meta
2024-05-12 17:46:13 +03:00
uses: docker/metadata-action@v5
2023-09-13 11:30:37 +03:00
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
- name: Build and push Docker image
2024-05-12 17:46:13 +03:00
uses: docker/build-push-action@v5
2023-09-13 11:30:37 +03:00
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}