Better image tags (#1733)

* Better image tags

* build image

* try 2

* try 3

* try 4

* Fix deprecation

* Include ref name

* Revert "Include ref name"

This reverts commit c9c0e7ee14.

* Remove nightly tags
pull/1745/head
Mattie Conover 2 years ago committed by GitHub
parent 6a958f6956
commit d3886ed4aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/monorepo-docker.yml
  2. 7
      .github/workflows/rust-docker.yml

@ -40,7 +40,11 @@ jobs:
- name: remove submodule locks
run: git submodule foreach rm yarn.lock
- name: Generate tag data
id: taggen
run: |
echo "TAG_DATE=$(date +'%Y%m%d-%H%M%S')" >> $GITHUB_OUTPUT
echo "TAG_SHA=$(echo '${{ github.sha }}' | cut -b 1-7)" >> $GITHUB_OUTPUT
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
@ -52,7 +56,7 @@ jobs:
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha
type=raw,value=${{ steps.taggen.outputs.TAG_SHA }}-${{ steps.taggen.outputs.TAG_DATE }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GCR

@ -34,6 +34,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Generate tag data
id: taggen
run: |
echo "TAG_DATE=$(date +'%Y%m%d-%H%M%S')" >> $GITHUB_OUTPUT
echo "TAG_SHA=$(echo '${{ github.sha }}' | cut -b 1-7)" >> $GITHUB_OUTPUT
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
@ -45,7 +50,7 @@ jobs:
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha
type=raw,value=${{ steps.taggen.outputs.TAG_SHA }}-${{ steps.taggen.outputs.TAG_DATE }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GCR

Loading…
Cancel
Save