Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-cli
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Operations
Operations
Metrics
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-cli
Commits
3e0b555d
Unverified
Commit
3e0b555d
authored
Aug 29, 2019
by
Massimiliano Pippi
Committed by
GitHub
Aug 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip changelog] Add Github workflow to push nightlies (#369)
* add nightly workflow * fix yaml
parent
5e1627de
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
.github/workflows/nightly.yaml
.github/workflows/nightly.yaml
+32
-0
No files found.
.github/workflows/nightly.yaml
0 → 100644
View file @
3e0b555d
name
:
nightly
on
:
schedule
:
# run every day at 1AM
-
cron
:
'
0
1
*
*
*'
jobs
:
publish-nightly
:
runs-on
:
ubuntu-latest
container
:
image
:
arduino/arduino-cli:builder-0.1
volumes
:
# cache go dependencies across pipeline's steps
-
$PWD/go:/go
steps
:
-
name
:
checkout
uses
:
actions/checkout@v1
-
name
:
build
run
:
goreleaser --snapshot
-
name
:
upload
uses
:
docker://plugins/s3
env
:
PLUGIN_SOURCE
:
'
dist/*'
PLUGIN_TARGET
:
'
/arduino-cli/nightly'
PLUGIN_BUCKET
:
'
arduino-downloads-prod-beagle'
AWS_ACCESS_KEY_ID
:
${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY
:
${{ secrets.AWS_SECRET_ACCESS_KEY }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment