fix endpoint for activity #107
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'master' | |
jobs: | |
deploy: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
env: | |
ruby-version: 2.6 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install doctl | |
uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Set up s3cmd | |
run: | | |
python -m pip install --upgrade pip | |
pip install s3cmd | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.ruby-version }} | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: gems-${{ runner.os }}-${{ env.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
gems-${{ runner.os }}-${{ env.ruby-version }}- | |
gems-${{ runner.os }}- | |
- run: bundle config set deployment 'true' | |
- name: bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- run: bundle exec middleman build | |
- name: sync folder with cdn | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.CDN_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.CDN_SECRET_ACCESS_KEY }} | |
run: | | |
s3cmd -c ./do/.s3cfg sync --acl-public ./build/ --delete-removed s3://api-docs --no-preserve --no-mime-magic --guess-mime-type -v | |
- name: purge cdn cache | |
run: | | |
doctl compute cdn flush 0375d09b-1263-4413-a455-dea4f028a3d2 | |