Skip to content

Commit

Permalink
Actions (#79)
Browse files Browse the repository at this point in the history
* move to github action and get rid of travisci

* fix spaces in action scenario

* fix more action script spaces

* run action on every push

* images in meta step newline separated

* newest geoip db

* first login to docker hub
  • Loading branch information
vasyahuyasa authored Dec 21, 2021
1 parent 3e60fcf commit bede188
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
Expand Down

0 comments on commit bede188

Please sign in to comment.