Skip to content

Commit

Permalink
Update release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 19, 2024
1 parent 48db75c commit 81d64e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
- name: Prepare files for packaging
run: |
mkdir -p /tmp/package
cp -r ./* /tmp/package/ # Copy all files from current directory to temp package directory
cp -r ./* /tmp/package/ # Ensure .env.example is present in the current directory
cp -r ./.env.example /tmp/package/ # Explicitly copy .env.example if needed
echo "Files prepared for packaging."
- name: Package the build into a tar file
Expand All @@ -63,4 +64,4 @@ jobs:
draft: false # Set to true if you want to create a draft release
prerelease: false # Set to true if this is a pre-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub Actions
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub Actions

0 comments on commit 81d64e5

Please sign in to comment.