Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit 5aeac72

Browse files
authored
Update tar.yml
1 parent e05d837 commit 5aeac72

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

โ€Ž.github/workflows/tar.ymlโ€Ž

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,28 +51,28 @@ jobs:
5151
5252
- name: Create package directory
5353
run: |
54-
mkdir -p appwrite-functions
54+
mkdir -p Appwrite
5555
5656
- name: Copy files to package directory
5757
run: |
58-
cp -r src/ appwrite-functions/
59-
cp package.json appwrite-functions/
58+
cp -r src/ Appwrite/
59+
cp package.json Appwrite/
6060
echo "โœ… Files copied to package directory"
6161
echo "๐Ÿ“ Package directory contents:"
62-
ls -la appwrite-functions/
62+
ls -la Appwrite/
6363
6464
- name: Create deployment archive
6565
run: |
66-
cd appwrite-functions
67-
tar -czf ../Appwrite-Functions.tar.gz src/main.js package.json
66+
cd Appwrite
67+
tar -czf ../Appwrite.tar.gz src/main.js package.json
6868
cd ..
69-
echo "๐Ÿ“ฆ Archive created: Appwrite-Functions.tar.gz"
70-
echo "๐Ÿ“Š Archive size: $(du -h Appwrite-Functions.tar.gz | cut -f1)"
69+
echo "๐Ÿ“ฆ Archive created: Appwrite.tar.gz"
70+
echo "๐Ÿ“Š Archive size: $(du -h Appwrite.tar.gz | cut -f1)"
7171
7272
- name: Verify archive contents
7373
run: |
7474
echo "๐Ÿ” Archive contents:"
75-
tar -tzf Appwrite-Functions.tar.gz
75+
tar -tzf Appwrite.tar.gz
7676
7777
- name: Generate release notes
7878
id: release_notes
@@ -93,10 +93,10 @@ jobs:
9393
- name: Create or Update Release
9494
uses: softprops/action-gh-release@v2
9595
with:
96-
tag_name: "appwrite-functions-latest"
96+
tag_name: "Appwrite-latest"
9797
name: "Appwrite Functions"
9898
body_path: release_notes.md
99-
files: Appwrite-Functions.tar.gz
99+
files: Appwrite.tar.gz
100100
draft: false
101101
prerelease: false
102102
make_latest: true
@@ -107,6 +107,6 @@ jobs:
107107
- name: Release Summary
108108
run: |
109109
echo "๐ŸŽ‰ ่‡ชๅŠจๆž„ๅปบๅ’Œๅ‘ๅธƒๅฎŒๆˆ!"
110-
echo "๐Ÿ“ฆ ๅŒ…ๆ–‡ไปถ: Appwrite-Functions.tar.gz"
110+
echo "๐Ÿ“ฆ ๅŒ…ๆ–‡ไปถ: Appwrite.tar.gz"
111111
echo "๐Ÿท๏ธ ๅ‘ๅธƒๅ็งฐ: Appwrite Functions"
112-
echo "๐Ÿ”— ๅ‘ๅธƒๅœฐๅ€: https://github.com/${{ github.repository }}/releases/tag/appwrite-functions-latest"
112+
echo "๐Ÿ”— ๅ‘ๅธƒๅœฐๅ€: https://github.com/${{ github.repository }}/releases/tag/Appwrite-latest"

0 commit comments

Comments
ย (0)