-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from mediasanctuary/main
Eco Art Trail stuff
- Loading branch information
Showing
7 changed files
with
337 additions
and
246 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,39 @@ | ||
name: Deploy to dev | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
- name: Install dependencies | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm install | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- name: Build | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm run build | ||
- name: Install dependencies | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm install | ||
- name: Build | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm run build | ||
- name: Sync | ||
env: | ||
dest: '[email protected]:/home/members/nyma/sites/dev.mediasanctuary.org/web/wp-content/' | ||
run: | | ||
echo "${{secrets.DEPLOY_KEY}}" > deploy_key | ||
chmod 600 ./deploy_key | ||
rsync \ | ||
--rsh='ssh -i ./deploy_key -o StrictHostKeyChecking=no' \ | ||
--delete \ | ||
--checksum \ | ||
--recursive \ | ||
--verbose \ | ||
--human-readable \ | ||
--filter='P uploads' \ | ||
--exclude wp-content/uploads \ | ||
./wp-content/ ${{env.dest}} | ||
- name: Sync | ||
env: | ||
dest: "[email protected]:/home/members/nyma/sites/dev.mediasanctuary.org/web/wp-content/" | ||
run: | | ||
echo "${{secrets.DEPLOY_KEY}}" > deploy_key | ||
chmod 600 ./deploy_key | ||
rsync \ | ||
--rsh='ssh -i ./deploy_key -o StrictHostKeyChecking=no' \ | ||
--delete \ | ||
--checksum \ | ||
--recursive \ | ||
--verbose \ | ||
--human-readable \ | ||
--filter='P uploads' \ | ||
--exclude wp-content/uploads \ | ||
./wp-content/ ${{env.dest}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,39 @@ | ||
name: Deploy to www | ||
|
||
on: | ||
push: | ||
branches: [ production ] | ||
push: | ||
branches: [production] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
- name: Install dependencies | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm install | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- name: Build | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm run build | ||
- name: Install dependencies | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm install | ||
- name: Build | ||
run: | | ||
cd wp-content/themes/mediasanctuary | ||
npm run build | ||
- name: Sync | ||
env: | ||
dest: '[email protected]:/home/members/nyma/sites/new.mediasanctuary.org/web/wp-content/' | ||
run: | | ||
echo "${{secrets.PROD_DEPLOY_KEY}}" > deploy_key | ||
chmod 600 ./deploy_key | ||
rsync \ | ||
--rsh='ssh -i ./deploy_key -o StrictHostKeyChecking=no' \ | ||
--delete \ | ||
--checksum \ | ||
--recursive \ | ||
--verbose \ | ||
--human-readable \ | ||
--filter='P uploads' \ | ||
--exclude wp-content/uploads \ | ||
./wp-content/ ${{env.dest}} | ||
- name: Sync | ||
env: | ||
dest: "[email protected]:/home/members/nyma/sites/new.mediasanctuary.org/web/wp-content/" | ||
run: | | ||
echo "${{secrets.PROD_DEPLOY_KEY}}" > deploy_key | ||
chmod 600 ./deploy_key | ||
rsync \ | ||
--rsh='ssh -i ./deploy_key -o StrictHostKeyChecking=no' \ | ||
--delete \ | ||
--checksum \ | ||
--recursive \ | ||
--verbose \ | ||
--human-readable \ | ||
--filter='P uploads' \ | ||
--exclude wp-content/uploads \ | ||
./wp-content/ ${{env.dest}} |
Oops, something went wrong.