Skip to content

Commit

Permalink
autodeploy fix 1
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Feb 10, 2024
1 parent a836d94 commit 3785e3a
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 115 deletions.
231 changes: 116 additions & 115 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,119 +53,120 @@ jobs:
echo "::notice title=Published ${{ github.ref_name }} to @${{ github.repository }}@${{ env.PRERELEASE_TAG }}::This is a pre-release published to the '${{ env.PRERELEASE_TAG }}' npm tag"
fi
# auto-deploy:
# runs-on: ${{ matrix.os }}
# needs: deploy
# env:
# TERM: xterm
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-22.04
# node-version:
# - '18'
# auto-deploy-repos:
# - name: lando/acquia
# dirs: ./
# - name: lando/apache
# dirs: ./
# - name: lando/backdrop
# dirs: ./
# - name: lando/cli
# dirs: ./
# - name: lando/compose
# dirs: ./
# - name: lando/core
# dirs: ./
# - name: lando/core-next
# dirs: ./
# - name: lando/docs
# dirs: ./
# - name: lando/dotnet
# dirs: ./
# - name: lando/drupal
# dirs: ./
# - name: lando/elasticsearch
# dirs: ./
# - name: lando/go
# dirs: ./
# - name: lando/joomla
# dirs: ./
# - name: lando/lagoon
# dirs: ./
# - name: lando/lamp
# dirs: ./
# - name: lando/laravel
# dirs: ./
# - name: lando/lemp
# dirs: ./
# - name: lando/mailhog
# dirs: ./
# - name: lando/mariadb
# dirs: ./
# - name: lando/mean
# dirs: ./
# - name: lando/memcached
# dirs: ./
# - name: lando/mongo
# dirs: ./
# - name: lando/mssql
# dirs: ./
# - name: lando/mysql
# dirs: ./
# - name: lando/nginx
# dirs: ./
# - name: lando/node
# dirs: ./
# - name: lando/pantheon
# dirs: ./
# - name: lando/php
# dirs: ./
# - name: lando/phpmyadmin
# dirs: ./
# - name: lando/platformsh
# dirs: ./
# - name: lando/postgres
# dirs: ./
# - name: lando/python
# dirs: ./
# - name: lando/redis
# dirs: ./
# - name: lando/ruby
# dirs: ./
# - name: lando/symfony
# dirs: ./
# - name: lando/tomcat
# dirs: ./
# - name: lando/solr
# dirs: ./
# - name: lando/varnish
# dirs: ./
# - name: lando/wordpress
# dirs: ./
# steps:
# # Install deps and cache
# # NOTE that we use ref: main because we need to get the code that was updated from the prepare-release-action
# - name: Checkout code
# uses: actions/checkout@v3
# with:
# ref: main
# - name: Install node ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# registry-url: https://registry.npmjs.org
# cache: npm
# - name: Install dependencies
# run: npm clean-install --prefer-offline --frozen-lockfile
auto-deploy:
runs-on: ${{ matrix.os }}
needs: deploy
env:
TERM: xterm
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
node-version:
- '18'
auto-deploy-repos:
# - name: lando/acquia
# dirs: ./
# - name: lando/apache
# dirs: ./
# - name: lando/backdrop
# dirs: ./
# - name: lando/cli
# dirs: ./
# - name: lando/compose
# dirs: ./
# - name: lando/core
# dirs: ./
# - name: lando/core-next
# dirs: ./
# - name: lando/docs
# dirs: ./
- name: lando/dotnet
dirs: ./
# - name: lando/drupal
# dirs: ./
# - name: lando/elasticsearch
# dirs: ./
# - name: lando/go
# dirs: ./
# - name: lando/joomla
# dirs: ./
# - name: lando/lagoon
# dirs: ./
# - name: lando/lamp
# dirs: ./
# - name: lando/laravel
# dirs: ./
# - name: lando/lemp
# dirs: ./
# - name: lando/mailhog
# dirs: ./
# - name: lando/mariadb
# dirs: ./
# - name: lando/mean
# dirs: ./
# - name: lando/memcached
# dirs: ./
# - name: lando/mongo
# dirs: ./
# - name: lando/mssql
# dirs: ./
# - name: lando/mysql
# dirs: ./
# - name: lando/nginx
# dirs: ./
# - name: lando/node
# dirs: ./
# - name: lando/pantheon
# dirs: ./
# - name: lando/php
# dirs: ./
# - name: lando/phpmyadmin
# dirs: ./
# - name: lando/platformsh
# dirs: ./
# - name: lando/postgres
# dirs: ./
# - name: lando/python
# dirs: ./
# - name: lando/redis
# dirs: ./
# - name: lando/ruby
# dirs: ./
# - name: lando/symfony
# dirs: ./
# - name: lando/tomcat
# dirs: ./
# - name: lando/solr
# dirs: ./
# - name: lando/varnish
# dirs: ./
# - name: lando/wordpress
# dirs: ./
steps:
# Install deps and cache
# NOTE that we use ref: main because we need to get the code that was updated from the prepare-release-action
- name: Checkout code
uses: actions/checkout@v3
with:
ref: main
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
cache: npm
- name: Install dependencies
run: npm clean-install --prefer-offline --frozen-lockfile

# # Auto deploy to everything else
# - name: Auto deploy to ${{ matrix.auto-deploy-repos.name }}
# uses: lando/auto-deploy-action@v2
# with:
# branch: main
# slug: ${{ matrix.auto-deploy-repos.name }}
# token: ${{ secrets.PIROG_TOKEN }}
# pr: false
# dirs: ${{ matrix.auto-deploy-repos.dirs }}
# Auto deploy to everything else
- name: Auto deploy to ${{ matrix.auto-deploy-repos.name }}
uses: lando/auto-deploy-action@v3
with:
branch: main
slug: ${{ matrix.auto-deploy-repos.name }}
token: ${{ secrets.PIROG_TOKEN }}
pr: false
dirs: ${{ matrix.auto-deploy-repos.dirs }}
args: -D
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.0.0-beta.30 - [February 9, 2024](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0-beta.30)

* AUTO DEPLOY FIX 1

## v1.0.0-beta.29 - [February 8, 2024](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0-beta.29)

* Fixed broken `internalDomains` handling to force `target=_self`
Expand Down

0 comments on commit 3785e3a

Please sign in to comment.