Skip to content

Bump actions/cache from 3 to 4 #13

Bump actions/cache from 3 to 4

Bump actions/cache from 3 to 4 #13

name: "Publish Python Newrelic-Instrumentation"
on:
push:
paths:
- 'autoinstrumentation/python/**'
- '.github/workflows/publish-newrelic-instrumentation-python.yaml'
branches:
- main
pull_request:
paths:
- 'autoinstrumentation/python/**'
- '.github/workflows/publish-newrelic-instrumentation-python.yaml'
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Read version
run: echo VERSION=$(head -n 1 autoinstrumentation/python/requirements.txt | cut -d '=' -f3) >> $GITHUB_ENV
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository_owner }}/newrelic-agent-operator/instrumentation-python
tags: |
type=match,pattern=v(.*),group=1,value=v${{ env.VERSION }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to GitHub Package Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: autoinstrumentation/python
platforms: linux/amd64,linux/arm64
push: true
build-args: version=${{ env.VERSION }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache