This commit is contained in:
@ -15,23 +15,23 @@ jobs:
|
|||||||
container:
|
container:
|
||||||
image: barichello/godot-ci:4.4
|
image: barichello/godot-ci:4.4
|
||||||
steps:
|
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: |
|
run: |
|
||||||
cd $PROJECT_PATH
|
apt-get update
|
||||||
echo "test" > test.txt
|
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
|
- name: Upload Small Artifact
|
||||||
uses: christopherhx/gitea-upload-artifact@v4
|
uses: christopherhx/gitea-upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: test
|
name: test
|
||||||
path: test.txt
|
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
|
# - name: Checkout
|
||||||
# uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
# with:
|
# with:
|
||||||
|
|||||||
Reference in New Issue
Block a user