LYS-24 add gh-pages domain configuration #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy photos | |
on: | |
push: | |
branches: | |
- LYS-24-verifica-dominio-photos.gh.lysz210.name-per-gh-pages | |
jobs: | |
# tests: | |
# uses: ./.github/workflows/test.yaml | |
deploy: | |
# needs: | |
# - tests | |
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: | |
# - tests | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [ ubuntu-latest ] | |
# node: [ 22 ] | |
# 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: .reports/docs | |
# if-no-files-found: error | |
# pages: | |
# needs: | |
# - tests | |
# - docs | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [ ubuntu-latest ] | |
# node: [ 22 ] | |
# steps: | |
# - name: Download docs | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: docs | |
# - name: Download bdd tests reports | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: bdd | |
# path: bdd | |
# - name: Download unit tests reports | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: unit | |
# path: unit | |
# - name: Download code coverage reports | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: coverage | |
# path: coverage | |
# - name: Deploy pages | |
# uses: peaceiris/actions-gh-pages@v4 | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# publish_dir: ./ |