aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker.yaml
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-10 21:32:08 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-10 21:32:08 +0200
commit796a8f59a61ed6e54d0d2b41a5d0155c5bb9696b (patch)
tree538a0b1dac22b5aec2b65e67a0115369f44a1d88 /.github/workflows/docker.yaml
parentfeat: Capture command output + expose to new `atuin_output` tool (#3510) (diff)
downloadatuin-796a8f59a61ed6e54d0d2b41a5d0155c5bb9696b.zip
chore: Remove unneeded files
Diffstat (limited to '')
-rw-r--r--.github/workflows/docker.yaml61
1 files changed, 0 insertions, 61 deletions
diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml
deleted file mode 100644
index 8761aaf6..00000000
--- a/.github/workflows/docker.yaml
+++ /dev/null
@@ -1,61 +0,0 @@
-name: build-docker
-
-on:
- push:
- branches: [main]
- tags:
- - 'v*'
-
-jobs:
- publish:
- concurrency:
- group: ${{ github.ref }}-docker
- cancel-in-progress: true
- permissions:
- packages: write
- contents: read
- id-token: write
-
- runs-on: depot-ubuntu-24.04
- steps:
- - uses: actions/checkout@v6
-
- - name: Get Repo Owner
- id: get_repo_owner
- run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV
-
- - uses: depot/setup-action@v1
-
- - name: Login to container Registry
- uses: docker/login-action@v3
- with:
- username: ${{ github.repository_owner }}
- password: ${{ secrets.GITHUB_TOKEN }}
- registry: ghcr.io
-
- - name: Docker meta
- id: meta
- uses: docker/metadata-action@v5
- with:
- images: ghcr.io/${{ env.REPO_OWNER }}/atuin
- flavor: |
- latest=false
- tags: |
- type=ref,event=branch
- type=sha,prefix=
- type=semver,pattern={{version}}
- type=semver,pattern={{major}}.{{minor}}
-
- - name: Build and push
- uses: depot/build-push-action@v1
- with:
- push: true
- platforms: linux/amd64,linux/arm64
- file: ./Dockerfile
- context: .
- provenance: false
- build-args: |
- Version=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] || 'dev' }}
- GitCommit=${{ github.sha }}
- tags: ${{ steps.meta.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels }}