Skip to content

Commit

Permalink
Add weekly rebuild to ensure latest OpenSSL
Browse files Browse the repository at this point in the history
  • Loading branch information
wackysysadmin authored Dec 21, 2024
1 parent 89d471a commit 1730d9b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,21 @@ on:
branches:
- main
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'

jobs:
build:
name: push docker image to docker hub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: login to docker hub
id: docker-hub
env:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
run: |
docker login -u $username -p $password

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit 1730d9b

Please sign in to comment.