changing in sha name #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | ||
Check failure on line 28 in .github/workflows/django.yml GitHub Actions / Django CIInvalid workflow file
|
||
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 | ||
- name: Image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} |