goin s isnate
Some checks failed
godot-ci export / Windows Export (push) Has been cancelled

This commit is contained in:
2025-07-01 06:09:06 -07:00
parent d1600d3b00
commit eae446dfbf

View File

@ -15,23 +15,23 @@ jobs:
container:
image: barichello/godot-ci:4.4
steps:
- name: Create test file
# Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
# By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
- name: Install Node.js
run: |
cd $PROJECT_PATH
echo "test" > test.txt
apt-get update
apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
- name: Create test file
run: echo "test" > test.txt
- name: Upload Small Artifact
uses: christopherhx/gitea-upload-artifact@v4
with:
name: test
path: test.txt
# # Doing this becuase barichello/godot-ci:4.4 doesn't have nodejs installed, may need to make own docker image in the future
# # By default ubuntu-22.04 has nodejs 12, but we need a more modern version for the actions/checkout@v4
# - name: Install Node.js
# run: |
# apt-get update
# apt-get install -y curl
# curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
# apt-get install -y nodejs
# - name: Checkout
# uses: actions/checkout@v4
# with: