Skip to content

Commit

Permalink
github actions without secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
matias.castillo committed Oct 10, 2024
1 parent 08146d9 commit bd56e9b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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 }}

0 comments on commit bd56e9b

Please sign in to comment.