Skip to content

Commit 836d669

Browse files
committed
update to download-artifact v4
1 parent adf09a5 commit 836d669

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Download artifacts
39-
uses: actions/download-artifact@v2
39+
uses: actions/download-artifact@v4
4040
with:
4141
name: dist
4242

src/listeners/WelcomeMessage.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export const Listener: Listeners<Events.GuildMemberAdd> = {
88
run(client: AllyClient, listener: GuildMember): void {
99
//TODO: Add ability to change what channel to send message to.
1010
const welcomeChannelId = listener.guild.systemChannelId; //Add ability to change channel to send to
11-
console.log(welcomeChannelId);
1211
listener.guild.channels.fetch(welcomeChannelId).then((channel) => {
1312
if (channel.isSendable()) {
1413
let welcomeChannel = channel as SendableChannels;

0 commit comments

Comments
 (0)