Skip to content

Commit 3430803

Browse files
authored
fix: Remove .env generation.
1 parent 40a6dc2 commit 3430803

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ jobs:
1616
with:
1717
fetch-depth: 0 # Fetch all tags
1818

19-
- name: Create .env File
20-
run: |
21-
echo "" >> exts/wandelbots.omni/config/extension.toml
22-
echo "[env]" >> exts/wandelbots.omni/config/extension.toml
23-
echo "NOVA_AUTH0_DOMAIN = ${{ secrets.AUTH0_DOMAIN }}" >> exts/wandelbots.omni/config/extension.toml
24-
echo "NOVA_AUTH0_AUDIENCE = ${{ secrets.AUTH0_AUDIENCE }}" >> exts/wandelbots.omni/config/extension.toml
25-
echo "NOVA_AUTH0_CLIENT_ID = ${{ secrets.AUTH0_CLIENT_ID }}" >> exts/wandelbots.omni/config/extension.toml
26-
2719
- name: Get the Git Tag for this Commit
2820
id: get_tag
2921
run: echo "TAG_NAME=$(git describe --tags $(git rev-list --tags --max-count=1))" >> $GITHUB_ENV
@@ -44,16 +36,6 @@ jobs:
4436
echo "$TAG_MESSAGE" >> $GITHUB_ENV
4537
echo "EOF" >> $GITHUB_ENV
4638
47-
- name: Verify .env File Exists
48-
run: |
49-
if [ ! -f exts/wandelbots.omni/config/.env ]; then
50-
echo ".env file is missing!"
51-
exit 1
52-
else
53-
echo ".env exists"
54-
echo `cat exts/wandelbots.omni/config/.env`
55-
fi
56-
5739
- name: Create GitHub Release
5840
uses: softprops/action-gh-release@v2
5941
with:

0 commit comments

Comments
 (0)