Skip to content

github actions without secrets #1

github actions without secrets

github actions without secrets #1

Workflow file for this run

on: push
name: deploy
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: build and push to docker
uses: docker/build-push-action@v1
with:
username: "lenin.chavez"
password: "password"
repository: ${{ github.repository }}
tag_with_ref: true
tag_with_sha: true
tags: ${{ github.sha }}