mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* feat: eslint action * refactor: actions v2 * fix: set +x for entrypoint * ci: integrate docs * fix: give it a nice name * ci: publish docs * ci: fix yaml key error * ci: fix executable * ci: use normal sh shebang * ci: move into the workspace * ci: fix eslint path * ci: manually run the build * ci: use different container * ci: install git * ci: assume yes flag * ci: use correct branch * ci: fix branch and source * ci: fix condition * ci: remove useless steps * ci: rename action * ci: make executable again * ci: cleanup * ci: add stable branch * ci: remove semi * ci: do some logging for failing action * ci: remove actions api * ci: re-add semi * ci: use actions repo * ci: use v1 tags * ci: remove semi * chore: change job name passed to eslint * chore: dummy commit, remove different semi * ci: change job name * chore: dummy commit * ci: add gh-actions as possible branches * ci: lint all branches * ci: dummy * ci: separate pr and push * chore: run actions on gh branch * ci: try excluding branches
12 lines
332 B
Docker
12 lines
332 B
Docker
FROM node:12-slim
|
|
|
|
LABEL com.github.actions.name="Docs"
|
|
LABEL com.github.actions.description="Commit docs to the docs/ branch."
|
|
LABEL com.github.actions.icon="upload-cloud"
|
|
LABEL com.github.actions.color="blue"
|
|
|
|
RUN apt-get update && apt-get install -y git
|
|
|
|
COPY src /actions/docs/src
|
|
ENTRYPOINT ["/actions/docs/src/entrypoint.sh"]
|