-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathblank.yaml
29 lines (29 loc) · 828 Bytes
/
blank.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Ardrive Workflow
on: [push]
env:
# Setting an environment variable with the value of a configuration variable
env_var: ${{ vars.ENV_CONTEXT_VAR }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies
run: |
echo "Installing Dependencies....!"
- name: Build the static website
run: |
cd static-website
ls
- name: Upload to Ardrive
run: |
echo "Uploading to Ardrive....!"
echo "repository variable ${{ vars.REPOSITORY_VAR }}"
# ardrive --help
- name: Creating a Manifest
run: |
echo "Creating a manifest....!"
echo "Manifest created Successfully!"