Skip to content

Update spidersel.py #14

Update spidersel.py

Update spidersel.py #14

Workflow file for this run

name: docker-ci
on:
push:
branches:
- 'main'
paths-ignore:
- '**/README.md'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
push: true
tags: l4rm4nd/spidersel:latest
platforms: linux/amd64