Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
upload-pages-artifact/action.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29 lines (29 sloc)
874 Bytes
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: 'Upload Pages artifact' | |
description: 'A composite action that prepares your static assets to be deployed to GitHub Pages' | |
inputs: | |
path: | |
description: 'Path of the directoring containing the static assets.' | |
required: true | |
default: '_site/' | |
retention-days: | |
description: 'Duration after which artifact will expire in days.' | |
required: false | |
default: '1' | |
runs: | |
using: composite | |
steps: | |
- name: Archive artifact | |
shell: bash | |
run: | | |
tar \ | |
--dereference --hard-dereference \ | |
--directory ${{ inputs.path }} \ | |
-cvf ${{ runner.temp }}/artifact.tar \ | |
--exclude=.git \ | |
. | |
- name: Upload artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: github-pages | |
path: ${{ runner.temp }}/artifact.tar | |
retention-days: ${{ inputs.retention-days }} |