Moving to workflows directory #1
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: Hugo Build and Deploy | ||
on: push | ||
env: | ||
BASE_URL: ${{ (github.ref == 'refs/heads/master' && 'gen3.org') || 'alpha.gen3.org' }} | ||
AWS_BUCKET: ${{ env.BASE_URL }} | ||
Check failure on line 7 in .github/workflows/hugo_ci.yaml GitHub Actions / Hugo Build and DeployInvalid workflow file
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v2 | ||
with: | ||
hugo-version: '0.100.2' | ||
extended: true | ||
- name: Setup Asciidoctor | ||
run: sudo apt-get install -y asciidoctor # support asciidoc files | ||
- name: Update Config (replace {BASE_URL}) | ||
run: sed -i "s|{BASE_URL}|${BASE_URL}|g" config.yaml | ||
- name: Build Site | ||
run: hugo | ||
- name: Install AWS CLI | ||
uses: chrislennon/[email protected] | ||
- name: Deploy to S3 | ||
run: | | ||
cd ${{ github.event.repository.name }} | ||
aws s3 cp users s3://${{ env.AWS_BUCKET }}/ --recursive | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |