Skip to content

LYS-17 update job docs #15

LYS-17 update job docs

LYS-17 update job docs #15

Workflow file for this run

name: Deploy photos
on:
push:
branches:
- master
- LYS-17-aggiungere-github-actions
jobs:
test:
uses: ./.github/workflows/test.yaml
deploy:
if: github.ref_name != 'master'
needs:
- test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 22 ]
steps:
- uses: actions/checkout@v4
# todo build steps
# deploy
- name: Pulumi dependencies
working-directory: pulumi
run: npm ci
- uses: pulumi/actions@v6
with:
command: up
stack-name: lysz210/photos/dev
work-dir: pulumi
env:
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
docs:
needs:
- test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
node: [ 22 ]
defaults:
run:
working-directory: ./app
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Generate documentations
run: npm run docs
- name: Upload documentation to artifact
uses: actions/upload-artifact@v4
with:
name: docs
path: app/.reports