Skip to content

Commit

Permalink
HOTFIX: adding ci cd for jconf
Browse files Browse the repository at this point in the history
  • Loading branch information
Ytalo Borja committed Oct 14, 2023
1 parent 93038a5 commit c8ff0c1
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
61 changes: 61 additions & 0 deletions .github/workflows/jconf_prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# Workflow for building JCONF website and deploying a Jekyll site to FTP
name: Deploy JCONF website to FTP

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-artifact@v3
with:
name: jconfwebsite
path: _site

# Deployment job
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: jconfwebsite
path: _site
- name: FTP to Host
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.JCONF_FTP_CICD_USERNAME }}
username: ${{ secrets.JCONF_FTP_CICD_USERNAME }}
password: ${{ secrets.JCONF_FTP_CICD_PASSWORD }}
dry-run: true
local-dir: ./_site/
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,vim,visualstudiocode
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,vim,visualstudiocode


.Gemfile.lock
_site

### macOS ###
# General
.DS_Store
Expand Down
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Gemfile

source 'https://rubygems.org'

gem 'jekyll', '~> 4.2'

group :jekyll_plugins do
gem 'jekyll-timeago', '~> 0.13.1'
end

0 comments on commit c8ff0c1

Please sign in to comment.