You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a number of breaking changes introduced with version 4 that you should be aware of when migrating your version 3 workflows to version 4. If you have any issues or questions please leave a note before and I'll do my best to help. If you think you've discovered a bug please open an issue.
General
All inputs should now be lower cased using kebab casing. If your previous input was GIT_CONFIG_NAME it should now be git-config-name.
PRESERVE and LFS have been deprecated.
The clean-exclude input has had a syntax change. It's now a multiline string with eachline representing the file or folder you'd like to exclude.
Both ACCESS_TOKEN and GITHUB_TOKEN inputs are deprecated and can no longer be used. If you used either of these deployment tokens you can now pass either in as token. If you used a GitHub token previously you can also omit token from your workflow entirely as that's the default value of the field now.
SSH has been replaced with ssh-key. If you use another action to setup your SSH client you can set this value to true. You can also now pass in an SSH private key as a secret with a pairing repository deployment key and the action will set it up for you. For more details please check out the README.
# Version 3
- name: Deploy 🚀uses: JamesIves/[email protected]with:
SSH: trueBRANCH: gh-pages FOLDER: build# Version 4
- name: Deploy 🚀uses: JamesIves/[email protected]with:
ssh-key: true # Can also be set to ${{ secrets.DEPLOY_KEY }}branch: gh-pages folder: build
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
There are a number of breaking changes introduced with version 4 that you should be aware of when migrating your version 3 workflows to version 4. If you have any issues or questions please leave a note before and I'll do my best to help. If you think you've discovered a bug please open an issue.
General
All inputs should now be lower cased using kebab casing. If your previous input was
GIT_CONFIG_NAME
it should now begit-config-name
.PRESERVE
andLFS
have been deprecated.The
clean-exclude
input has had a syntax change. It's now a multiline string with eachline representing the file or folder you'd like to exclude.Tokens
ACCESS_TOKEN
andGITHUB_TOKEN
inputs are deprecated and can no longer be used. If you used either of these deployment tokens you can now pass either in astoken
. If you used a GitHub token previously you can also omittoken
from your workflow entirely as that's the default value of the field now.SSH
has been replaced withssh-key
. If you use another action to setup your SSH client you can set this value totrue
. You can also now pass in an SSH private key as a secret with a pairing repository deployment key and the action will set it up for you. For more details please check out the README.Beta Was this translation helpful? Give feedback.
All reactions