You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
9
8
jobs:
10
9
build-and-push-image:
11
10
runs-on: ubuntu-latest
12
-
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
13
11
permissions:
14
12
contents: read
15
13
packages: write
16
14
attestations: write
17
15
id-token: write
18
-
#
19
16
steps:
20
17
- name: Checkout repository
21
18
uses: actions/checkout@v4
22
-
# 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.
# 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.
30
25
- name: Extract metadata (tags, labels) for Docker
0 commit comments