Skip to content

Commit

Permalink
Fixing github actions script.
Browse files Browse the repository at this point in the history
  • Loading branch information
renemadsen committed Jan 19, 2025
1 parent 0c7892f commit e2dc6b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-core-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: |-
docker tag microtingas/greate-belt-container:latest microtingas/greate-belt-container:latest
- run: docker save microtingas/greate-belt-container:latest -o greate-belt-container.tar
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: greate-belt-container
path: greate-belt-container.tar
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Extract branch name
id: extract_branch
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: greate-belt-container
- run: docker load -i greate-belt-container.tar
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: |
cat docker_run_log
- name: DB Configuration
uses: cypress-io/github-action@v4
uses: cypress-io/github-action@v3
with:
start: echo 'hi'
wait-on: "http://localhost:4200"
Expand All @@ -146,7 +146,7 @@ jobs:
cat docker_run_log
- name: Archive screenshot artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: error Screenshots
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-core-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: |-
docker tag microtingas/greate-belt-container:latest microtingas/greate-belt-container:latest
- run: docker save microtingas/greate-belt-container:latest -o greate-belt-container.tar
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: greate-belt-container
path: greate-belt-container.tar
Expand All @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v3
with:
path: eform-angular-greate-belt-plugin
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: greate-belt-container
- run: docker load -i greate-belt-container.tar
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
run: |
cat docker_run_log
- name: DB Configuration
uses: cypress-io/github-action@v4
uses: cypress-io/github-action@v3
with:
start: echo 'hi'
wait-on: "http://localhost:4200"
Expand All @@ -140,7 +140,7 @@ jobs:
cat docker_run_log
- name: Archive screenshot artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: error Screenshots
path: |
Expand Down

0 comments on commit e2dc6b8

Please sign in to comment.