Skip to content

Action with awxkit 24.6.1 #19

Action with awxkit 24.6.1

Action with awxkit 24.6.1 #19

Workflow file for this run

---
name: main
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Login to DockerHub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Generate image tag
id: image_tag
run: |
echo tag=$(echo ${{ github.event.release.tag_name }} | sed 's/^v//') >> $GITHUB_OUTPUT
- name: Build && Push
uses: docker/[email protected]
with:
context: .
file: Dockerfile.base
tags: t42x/awxkit_base:${{ steps.image_tag.outputs.tag }}
push: true