Skip to content

Commit

Permalink
fxied build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
denisgolius committed Mar 27, 2024
1 parent 25aac0d commit d816f04
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ jobs:

steps:
- name: Check out repo
uses: actions/checkout@v2
uses: actions/checkout@v4

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

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Cache last built versions
id: cache-build-versions
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
last_master
Expand All @@ -38,8 +38,8 @@ jobs:

- name: Install curl and jq
run: |
sudo apt-get install curl jq
sudo apt-get install curl jq -y
- name: Run build script
run: |
bash build.sh
bash -x build.sh

0 comments on commit d816f04

Please sign in to comment.