Skip to content

changing in sha name #5

changing in sha name

changing in sha name #5

Workflow file for this run

name: Django CI
on:
push:
branches:
- 5-github-action
jobs:
build:
name: build and push repo
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3'
architecture: 'x64'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USR }}
password: ${{ secrets.DOCKER_HUB_PASS }}
- name: Set up Docker Buildz
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: tachyonbyte/leaderboard:${{github.sha}}