Skip to content

docs: add release process documentation #1

docs: add release process documentation

docs: add release process documentation #1

Workflow file for this run

---
name: Release
on:
push:
tags:
- 'v*'
env:
IMAGE_NAME: lfedge/adam
jobs:
release:
runs-on: ubuntu-20.04
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }}
password: ${{ secrets.RELEASE_DOCKERHUB_TOKEN }}
- name: Build and push to Dockerhub
id: docker_build
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
tags: |

Check failure on line 38 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 38, Col: 17): Unexpected symbol: 'GITHUB_REF#refs/tags/'. Located at position 5 within expression: env.GITHUB_REF#refs/tags/
${{env.IMAGE_NAME}}:${{env.GITHUB_REF#refs/tags/}}
${{env.IMAGE_NAME}}:latest
ghcr.io/${{ github.repository_owner }}/adam:${{ github.event.release.tag_name }}
ghcr.io/${{ github.repository_owner }}/adam:latest