Skip to content

Commit

Permalink
Merge pull request #7 from cradle8810/auto_deploy
Browse files Browse the repository at this point in the history
Auto deployを追加する
  • Loading branch information
cradle8810 authored Apr 21, 2024
2 parents 529c5b7 + 217e6ab commit 1101865
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 50 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/PRD_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: PRD Push

on:
workflow_dispatch:

jobs:
Deployment_PRD:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Upload to PRD
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SRV }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: ${{ secrets.FTP_PRD_DIR }}/
local-dir: www/
20 changes: 0 additions & 20 deletions .github/workflows/lints.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/sitemap.yml

This file was deleted.

61 changes: 61 additions & 0 deletions .github/workflows/workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
name: Lints and STG upload

on:
push:
branches:
- '**'

jobs:
HTML_Lint:
runs-on: ubuntu-latest
container:
image: ghcr.io/cradle8810/htmllint:latest
steps:

- name: Checkout
uses: actions/checkout@v3

- name: Execute HTMLlint
run: htmllint

Sitemap_txt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: find html files and output as sitemap.txt
run: |
find . -type f -name "*.html" | \
sed 's#\.\/#http:\/\/hayaworld\.net/#g' | \
sed 's#\/www##g' \
> www/sitemap.txt
- name: View sitemap.txt
run: cat "www/sitemap.txt"

- name: Upload sitemap.txt as artifacts
uses: actions/upload-artifact@v4
with:
name: sitemap.txt
path: www/sitemap.txt

Deployment_STG:
needs:
- HTML_Lint
- Sitemap_txt

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Upload to STG
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SRV }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: ${{ secrets.FTP_STG_DIR }}/
local-dir: www/

0 comments on commit 1101865

Please sign in to comment.