Skip to content

Commit

Permalink
change workflows 9
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriiKosiy committed Dec 24, 2024
1 parent a25ff94 commit 123225e
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,16 @@ jobs:
mkdir -p .cr-release-packages
helm package . -d .cr-release-packages
ls -la .cr-release-packages/
- name: Debug Current Directory
run: |
echo "Debugging current directory after helm package:"
pwd
ls -la
- name: Save package as artifact
uses: actions/upload-artifact@v3
with:
name: helm-charts
path: .cr-release-packages/*.tgz

path: ./.cr-release-packages/** # Виправлення шляху для збереження
publish:
needs: package
runs-on: ubuntu-latest
Expand All @@ -50,16 +54,16 @@ jobs:
- name: List artifacts
run: |
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/actions/artifacts"
"https://api.github.com/repos/${{ github.repository }}/actions/artifacts"
- name: Download chart artifact
uses: actions/download-artifact@v3
with:
name: helm-charts
path: ./
- name: List files
- name: List downloaded files
run: |
echo "Files after downloading artifact:"
ls -la
pwd
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
Expand Down

0 comments on commit 123225e

Please sign in to comment.