fixed syntax
Some checks failed
Upload hello.txt to S3 / upload (push) Has been cancelled

This commit is contained in:
Sohrab Behdani 2025-03-18 20:47:14 +03:30
parent 0115a17799
commit e6189f5dc5

View file

@ -13,17 +13,20 @@ jobs:
privileged: true
steps:
- name: nodejs
- run: pacman -Syu --noconfirm nodejs
- name: Install Node.js
run: pacman -Syu --noconfirm nodejs
- name: Checkout repository
uses: actions/checkout@v4
- name: Create hello.txt
run: echo "Hello, Forgejo CI!" > hello.txt
- name: Install MinIO Client (mc)
run: |
curl -O https://dl.min.io/client/mc/release/linux-amd64/mc
chmod +x mc
sudo mv mc /usr/local/bin/
mv mc /usr/local/bin/
- name: Configure MinIO Client
run: |