Skip to content

πŸŽ‰ feat(release.yml): add GitHub Actions workflow for creating releases #4

πŸŽ‰ feat(release.yml): add GitHub Actions workflow for creating releases

πŸŽ‰ feat(release.yml): add GitHub Actions workflow for creating releases #4

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: matesousa/create-release-bot:latest