This file contains hidden or 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
| {# | |
| value : date and/or time value validated as not null (mandatory), | |
| format : php date format string (mandatory), | |
| options: { | |
| prefix: string to append to processed format, | |
| suffix: string to append to processed format, | |
| tag : html tagname string, | |
| html : markup, typically to be wrapped in a <time> element, | |
| attr : hash of name:value attribute pairs | |
| } |
This file contains hidden or 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: Craft CMS deployments | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest |
This file contains hidden or 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
| # This script is used to deploy a Craft CMS site on an Arcustech server | |
| # | |
| # It will clone the git main branch from a private repo into | |
| # a 'deployments' directory and them create symlinks for the | |
| # static assets: .env, and 3 directories of assets. | |
| # It then does a composer install of the Craft site. | |
| # The scripts in the composer file are like this: https://github.com/nystudio107/devmode/blob/f2b231e772026860f75e255c9e22722dac983de8/cms/composer.json#L55 | |
| # These scripts update Craft, clear caches, etc. | |
| # Finally, it will symlink the web directory in the newly downloaded files | |
| # to the public folder which is the one used by Arcustech |
OlderNewer